How To: A Shiny New Python Data Science Sandbox in 30 Minutes Or Less (x-post from r/datascience): https://www.reddit.com/r/Python/comments/4qmrih/how_to_a_shiny_new_python_data_science_sandbox_in/
reddit
How To: A Shiny New Python Data Science Sandbox in 30... • /r/Python
0 points and 1 comments so far on reddit
Need guidance with connector development: https://www.reddit.com/r/Python/comments/4qmxez/need_guidance_with_connector_development/
reddit
Need guidance with connector development • /r/Python
Very new to Python but picking it up slowly. I am trying to build a connector that collects multiple users learning data from an LMS and sends it...
Multiprocessing with pool in python: About several instances with same name at the same time: http://stackoverflow.com/questions/37838789/multiprocessing-with-pool-in-python-about-several-instances-with-same-name-at-t
Stackoverflow
Multiprocessing with pool in python: About several instances with same name at the same time
I'm kind of new to multiprocessing. However, assume that we have a program as below. The program seems to work fine. Now to the question. In my opinion we will have 4 instances of SomeKindOfClass w...
A easy to use, production tested SOA framework in Python.: https://www.reddit.com/r/Python/comments/4qn2qt/a_easy_to_use_production_tested_soa_framework_in/
reddit
A easy to use, production tested SOA framework in Python. • /r/Python
1 points and 0 comments so far on reddit
Tornado secure websocket timeout: http://stackoverflow.com/questions/37996591/tornado-secure-websocket-timeout
Stackoverflow
Tornado secure websocket timeout
My server got 2 Ip's (ip1 & ip2) i recently added ip2. When i try to open my tornado websocketserver on ip1 (where apache2 is running) everything is fine, i specify a port e.g. 22000 and can co...
Get PyCharm at 30% OFF and support Django! ALL proceeds are going to the Django Software Foundation. Additionally, JetBrains is sponsoring PEP 484 type hinting in Django through a separate DSF Fellowship grant!: https://www.reddit.com/r/Python/comments/4qnfwd/get_pycharm_at_30_off_and_support_django_all/
reddit
Get PyCharm at 30% OFF and support Django! ALL... • /r/Python
7 points and 0 comments so far on reddit
Python/Django/Javascript Developers/Architects Needed!!! Can be Remote - Full Time: https://www.reddit.com/r/Python/comments/4qnue7/pythondjangojavascript_developersarchitects/
reddit
Python/Django/Javascript Developers/Architects... • /r/Python
I'm looking for a python/django/javascript architect and a sr. python/django/javascript engineer for one of my clients in Alpharetta, GA (can also...
Creating personal assistant for GNU/Linux: https://www.reddit.com/r/Python/comments/4qntie/creating_personal_assistant_for_gnulinux/
reddit
Creating personal assistant for GNU/Linux • /r/Python
To learn python and to get knowledge how the system works, I've decided to create my personal assistant (something like siri or cortana but much...
vl - a simple cli to verify URLs on text documents.: https://www.reddit.com/r/Python/comments/4qo88h/vl_a_simple_cli_to_verify_urls_on_text_documents/
reddit
vl - a simple cli to verify URLs on text documents. • /r/Python
1 points and 0 comments so far on reddit
Line Profiling inner function with Cython: http://stackoverflow.com/questions/38086398/line-profiling-inner-function-with-cython
Stackoverflow
Line Profiling inner function with Cython
I've had pretty good success using this answer to profile my Cython code, but it doesn't seem to work properly with nested functions. In this notebook you can see that the profile doesn't appear wh...
Plotly managed to lose me within 2 hours of finding them. Any good alternative libraries for displaying streaming data as scatter plot as it arrives?: https://www.reddit.com/r/Python/comments/4qoo4y/plotly_managed_to_lose_me_within_2_hours_of/
reddit
Plotly managed to lose me within 2 hours of finding... • /r/Python
I need to monitor my simulation output data as the simulations run, as 2D or 3D scatter plot, optionally with added trendlines. I found plotly,...
Currently learning Python 2.7 on Coursera, should I stop course and start on 3?: https://www.reddit.com/r/Python/comments/4qoz3a/currently_learning_python_27_on_coursera_should_i/
reddit
Currently learning Python 2.7 on Coursera, should I... • /r/Python
I'm on the 2nd of 5 classes in a specialization on python data analysis/visualization on Coursera. Just learned about strings & files, about to...
A Faster Auto Clicker Than PyAutoGui?: https://www.reddit.com/r/Python/comments/4qp1xa/a_faster_auto_clicker_than_pyautogui/
reddit
A Faster Auto Clicker Than PyAutoGui? • /r/Python
I was trying to make an auto clicker for a game, just a simple DIY project, so i searched and my path crossed with PyAutoGui. i found it easy so...
When is copy on write invoked for python multiprocessing across class methods: http://stackoverflow.com/questions/38084401/when-is-copy-on-write-invoked-for-python-multiprocessing-across-class-methods
Stackoverflow
When is copy on write invoked for python multiprocessing across class methods
I have a bit of multiprocessing Python code that looks a bit like this:
import time
from multiprocessing import Pool
import numpy as np
class MyClass(object):
def __init__(self):
self.
import time
from multiprocessing import Pool
import numpy as np
class MyClass(object):
def __init__(self):
self.
[PyQt] - Why use pyqtProperty over standard property?: https://www.reddit.com/r/Python/comments/4qp3z3/pyqt_why_use_pyqtproperty_over_standard_property/
reddit
[PyQt] - Why use pyqtProperty over standard property? • /r/Python
What's the advantage of using pyqtProperty instead of Python's plain old property (used as a decorator on a method)? I understand I must specify...