A discussion on serverless programming in Python [audio]: https://www.reddit.com/r/Python/comments/6jtdj7/a_discussion_on_serverless_programming_in_python/
reddit
A discussion on serverless programming in Python [audio] • r/Python
1 points and 0 comments so far on reddit
Does anyone have experience with speech recognition?: https://www.reddit.com/r/Python/comments/6jtfi6/does_anyone_have_experience_with_speech/
reddit
Does anyone have experience with speech recognition? • r/Python
I'm doing a little research on this matter and I thought there could be someone with some experience here. I found what it seems to be the best...
A useful checklist for build good Python libraries APIs. Based on "How to make a good library API" PyCon 2017 talk: https://www.reddit.com/r/Python/comments/6jtits/a_useful_checklist_for_build_good_python/
reddit
A useful checklist for build good Python libraries... • r/Python
97 points and 5 comments so far on reddit
PySerial minimum time for timeout?: https://www.reddit.com/r/Python/comments/6jtzua/pyserial_minimum_time_for_timeout/
reddit
PySerial minimum time for timeout?
What's the minimum time for pyserial timeout and inter_char_timeout. The parameter represents timeout in seconds and it's a float. I've tried...
How to concatenate multiple pandas.DataFrames without running into MemoryError: https://stackoverflow.com/questions/44715393/how-to-concatenate-multiple-pandas-dataframes-without-running-into-memoryerror
Stack Overflow
How to concatenate multiple pandas.DataFrames without running into MemoryError
I have three DataFrames that I'm trying to concatenate.
concat_df = pd.concat([df1, df2, df3])
This results in a MemoryError. How can I resolve this?
Note that most of the existing similar quest...
concat_df = pd.concat([df1, df2, df3])
This results in a MemoryError. How can I resolve this?
Note that most of the existing similar quest...
Why is python so slow on windows?: https://www.reddit.com/r/Python/comments/6jufg2/why_is_python_so_slow_on_windows/
reddit
Why is python so slow on windows? • r/Python
I wrote a simple python script that creates a sqlite file on the current path and dumps random numbered records into it inside a loop of 500...
Django Error Logging: Adding request header, body and user information: https://stackoverflow.com/questions/44712569/django-error-logging-adding-request-header-body-and-user-information
Stack Overflow
Django Error Logging: Adding request header, body and user information
Looking for a way to add header, body and a user's email address in my error log along with the stack trace of the exception in my views.py
After scouring the web for hours, many suggested to writ...
After scouring the web for hours, many suggested to writ...
Quick question with Python Pandas DataFrames: https://www.reddit.com/r/Python/comments/6jux6a/quick_question_with_python_pandas_dataframes/
reddit
Quick question with Python Pandas DataFrames • r/Python
I am getting a CSV File that I have to load into a DataFrame, and the default structure that my boss said the DataFrame is usually loaded up as is...
PyPy Python 3.5 Current Stability: https://www.reddit.com/r/Python/comments/6jvb4y/pypy_python_35_current_stability/
reddit
PyPy Python 3.5 Current Stability • r/Python
In the experiences of everyone here, how stable is PyPy for python 3.5? I know they now fully support python 3.5+, have received funding from...
Script-server: web interface for your scripts: https://www.reddit.com/r/Python/comments/6jvdzw/scriptserver_web_interface_for_your_scripts/
reddit
Script-server: web interface for your scripts • r/Python
Hi everyone, let me share with you my python-based tool - Script-server. It provides access to scripts execution via web server. Users can...
Has Python/Cython become a good candidate toward HPC?: https://www.reddit.com/r/Python/comments/6jvnr6/has_pythoncython_become_a_good_candidate_toward/
reddit
Has Python/Cython become a good candidate toward HPC? • r/Python
I have seen several reports claiming Cython can be tailored to have comparable speed to C and C++. Cython even have parallel support right now,...
Sorting an array in a single iteration?: https://www.reddit.com/r/Python/comments/6jvo9c/sorting_an_array_in_a_single_iteration/
reddit
Sorting an array in a single iteration? • r/Python
I noticed problems with an array that I need sorting. I created a test case and noticed that sorting an array doesn't happen in a single pass,...
Using Docker for Flask Application Development (not just Production!): https://www.reddit.com/r/Python/comments/6jvw7u/using_docker_for_flask_application_development/
reddit
Using Docker for Flask Application Development (not... • r/Python
2 points and 1 comments so far on reddit
How to do performance micro benchmarks in Python: https://www.reddit.com/r/Python/comments/6jvw5b/how_to_do_performance_micro_benchmarks_in_python/
reddit
How to do performance micro benchmarks in Python • r/Python
2 points and 0 comments so far on reddit
[TASK] Build a Depop follow bot.: https://www.reddit.com/r/Python/comments/6jxiws/task_build_a_depop_follow_bot/
reddit
[TASK] Build a Depop follow bot. • r/Python
Hey, I have a task for everyone here. There is a site/app called Depop (Depop.com) where you can sell clothes and items. I want someone to build a...
SQLAlchemy order_by many to many relationship through association proxy: https://stackoverflow.com/questions/44648635/sqlalchemy-order-by-many-to-many-relationship-through-association-proxy
Stack Overflow
SQLAlchemy order_by many to many relationship through association proxy
I have a many to many relationship setup in a Flask app in SQLAlchemy using a Association Object. I then have have assocation proxies setup between the the classes, to give more direct access rathe...