What's everyone working on this week?: https://www.reddit.com/r/Python/comments/6jsx09/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...
Date plotting seems to be broken in dash plotting framework: https://stackoverflow.com/questions/44725692/date-plotting-seems-to-be-broken-in-dash-plotting-framework
Stackoverflow
Date plotting seems to be broken in dash plotting framework
I'm trying to plot a horizontal bar chart in the dash environment, however whilst I can plot elements such as days, or numbers, I cannot get the correct range. In order words the start date is corr...
Yield Request call produce weird result in recursive method with scrapy: https://stackoverflow.com/questions/43667622/yield-request-call-produce-weird-result-in-recursive-method-with-scrapy
Stackoverflow
Yield Request call produce weird result in recursive method with scrapy
I'm trying to scrap all departures and arrivals in one day from all airports in all country using Python and Scrapy.
The json database used by this famouse site (flight radar) need to query page b...
The json database used by this famouse site (flight radar) need to query page b...
Compiling Python syntax to x86-64 assembly for fun and (zero) profit: http://benhoyt.com/writings/pyast64/
Benhoyt
Compiling Python syntax to x86-64 assembly for fun and (zero) profit
A toy (but working) compiler that turns Python syntax into x86-64 assembly using Python's built-in AST module.
Issues with online interpreter and IDLE.: https://www.reddit.com/r/Python/comments/6jt9ay/issues_with_online_interpreter_and_idle/
reddit
Issues with online interpreter and IDLE. • r/Python
I'm pretty new to python and programming so please bear with me. I've been using an online interpreter called repl.it to build a little escape the...
Help with my Raspberry Pi Smart Mirror!: https://www.reddit.com/r/Python/comments/6jtbhz/help_with_my_raspberry_pi_smart_mirror/
reddit
Help with my Raspberry Pi Smart Mirror! • r/Python
I am currently trying to replicate a Raspberry Pi Smart Mirror, and have gotten it almost all ready but have run into a dead end with my code....
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,...