Rule based data validation with Pyvaru (Python 3.4 ): https://www.reddit.com/r/Python/comments/5ske8u/rule_based_data_validation_with_pyvaru_python_34/
reddit
Rule based data validation with Pyvaru (Python 3.4+) • /r/Python
I've just released Pyvaru: a simple, flexible and unobtrusive data validation library for Python 3 (3.4+), based on the concept of validation...
Implementing a Principal Component Analysis (PCA) in Python (2014): https://www.reddit.com/r/Python/comments/5skslh/implementing_a_principal_component_analysis_pca/
reddit
Implementing a Principal Component Analysis (PCA) in... • /r/Python
1 points and 0 comments so far on reddit
healthier - food and physical activity consumption tracker project: https://www.reddit.com/r/Python/comments/5sky96/healthier_food_and_physical_activity_consumption/
reddit
healthier - food and physical activity consumption... • /r/Python
hi, I had to implement food and physical activity tracker, as a homework project, by using Django. The aim was to cover the most of the software...
Gradual packaging. From single .py file to 20 config file soup.: https://www.reddit.com/r/Python/comments/5sktcd/gradual_packaging_from_single_py_file_to_20/
reddit
Gradual packaging. From single .py file to 20 config... • /r/Python
3 points and 0 comments so far on reddit
Using package files from script: http://stackoverflow.com/questions/19600585/using-package-files-from-script
Stackoverflow
Using package files from script
If I have a script in my Python package, how can I get it to read other files from the package, since __file__ contains (for example) /usr/bin/myscript and not /usr/lib/python3.3/site-packages/mypa...
Contributing open source projects: https://www.reddit.com/r/Python/comments/5sl1n8/contributing_open_source_projects/
reddit
Contributing open source projects • /r/Python
I'm finding myself with some free time and I want to start contributing to some open source project that are in need of python engineers. I wanted...
Getting syntax error when using else elif functions: https://www.reddit.com/r/Python/comments/5sldar/getting_syntax_error_when_using_else_elif/
reddit
Getting syntax error when using else elif functions • /r/Python
Im really a beginner with python and programming in general. I wrote this code (its still a work in progress): while True: print ("Please enter...
Learn about "descriptors" in Python (and an offer): https://www.reddit.com/r/Python/comments/5slads/learn_about_descriptors_in_python_and_an_offer/
reddit
Learn about "descriptors" in Python (and an offer) • /r/Python
Hello, I have put my work in progress book: [Python for Developers](https://amitu.com/python/) online and have just written about a new section...
What's everyone working on this week?: https://www.reddit.com/r/Python/comments/5slk6t/whats_everyone_working_on_this_week/
reddit
What's everyone working on this week? • /r/Python
Tell /r/python what you're working on this week! You can be bragging, grousing, sharing your passion, or explaining your pain. Talk about your...
Heroku sock=backend Server Request Interrupted for a Flask SocketIO application: http://stackoverflow.com/questions/34708144/heroku-sock-backend-server-request-interrupted-for-a-flask-socketio-application
Stack Overflow
Heroku sock=backend Server Request Interrupted for a Flask SocketIO application
I have a flask-socketio app hosted on heroku with the following Procfile :
web: gunicorn --worker-class eventlet hello:app
Ever since I switched to socketio, the app has been behaving inconsisten...
web: gunicorn --worker-class eventlet hello:app
Ever since I switched to socketio, the app has been behaving inconsisten...
Using virtualenv is more secure?: https://www.reddit.com/r/Python/comments/5sm6zm/using_virtualenv_is_more_secure/
reddit
Using virtualenv is more secure?
I've been trying to convince my manager that we should use Python to automate some of the boring stuff (as the good book says). But he asked me...
Python namedtuple as argument to apply_async(..) callback: http://stackoverflow.com/questions/41831281/python-namedtuple-as-argument-to-apply-async-callback
Stackoverflow
Python namedtuple as argument to apply_async(..) callback
I'm writing a short program where I want to call a function asynchronously so that it doesn't block the caller. To do this, I'm using Pool from python's multiprocessing module.
In the function being
In the function being
I'm having an absolute nightmare with this.: https://www.reddit.com/r/Python/comments/5smpr7/im_having_an_absolute_nightmare_with_this/
reddit
I'm having an absolute nightmare with this. • /r/Python
import random passwordtest = open('gadsby.txt', 'r').read() w1 = random.choice(passwordtest.split()) w2 = random.choice(passwordtest.split()) w3...
Trying to convert python project to exe using PyInstaller. What is happening?: https://www.reddit.com/r/Python/comments/5smxfp/trying_to_convert_python_project_to_exe_using/
reddit
Trying to convert python project to exe using... • /r/Python
0 points and 0 comments so far on reddit
Can you have multiple UDP client-server pairs running on the same machine?: https://www.reddit.com/r/Python/comments/5sn0za/can_you_have_multiple_udp_clientserver_pairs/
reddit
Can you have multiple UDP client-server pairs running... • /r/Python
I have a python class A that sends out data, and another python class B that receives data. I tried implementing a third python class C that gets...