Why has the pyglet memory leak not been fixed? And ELI5: pyglet memory leak.: https://www.reddit.com/r/Python/comments/4m9rpi/why_has_the_pyglet_memory_leak_not_been_fixed_and/
reddit
Why has the pyglet memory leak not been fixed? And... • /r/Python
0 points and 0 comments so far on reddit
During PyCon I took my most copy-pasted personal script and open-sourced it.: https://www.reddit.com/r/Python/comments/4ma3nn/during_pycon_i_took_my_most_copypasted_personal/
reddit
During PyCon I took my most copy-pasted personal... • /r/Python
3 points and 0 comments so far on reddit
q - Quick and dirty debugging output for tired programmers: https://www.reddit.com/r/Python/comments/4ma975/q_quick_and_dirty_debugging_output_for_tired/
reddit
q - Quick and dirty debugging output for tired programmers • /r/Python
1 points and 0 comments so far on reddit
(Best) Unit Testing Framework for Python and/or Django in 2016?: https://www.reddit.com/r/Python/comments/4mapgi/best_unit_testing_framework_for_python_andor/
reddit
(Best) Unit Testing Framework for Python and/or Django... • /r/Python
Maybe a loaded question but I'm about to embark on a new Python project (Python 3.x). I'm currently undecided whether to go with Pyramid framework...
How to replace Django's primary key with a different integer that is unique for that table: http://stackoverflow.com/questions/37558821/how-to-replace-djangos-primary-key-with-a-different-integer-that-is-unique-for
Stack Overflow
How to replace Django's primary key with a different integer that is unique for that table
I have a Django web application that uses the default auto-incremented positive integers as the primary key. This key is used throughout the application and is frequently inserted into the URL. I d...
PhD student needs advice on interfacing python code with webpage: https://www.reddit.com/r/Python/comments/4mb0qt/phd_student_needs_advice_on_interfacing_python/
reddit
PhD student needs advice on interfacing python code... • /r/Python
Hello everyone, I am a microbiology PhD student with a focus on genomics. I am fairly proficient in python programming for bioinformatic purposes...
Studyblue webcrawling issue: https://www.reddit.com/r/Python/comments/4mb76h/studyblue_webcrawling_issue/
reddit
Studyblue webcrawling issue • /r/Python
Hi all, I'm trying to write a python script to work with content on a studyblue study deck page. My goal was to strip all the additional html code...
Improved error messages for Python assert statements: https://www.reddit.com/r/Python/comments/4mbalr/improved_error_messages_for_python_assert/
reddit
Improved error messages for Python assert statements • /r/Python
1 points and 1 comments so far on reddit
Me trying to explain how we changed our code to make it more testable at PyCon Sweden: https://www.reddit.com/r/Python/comments/4mbb3u/me_trying_to_explain_how_we_changed_our_code_to/
reddit
Me trying to explain how we changed our code to make... • /r/Python
1 points and 0 comments so far on reddit
curldrop - upload files straight from your terminal with curl (written in Python): https://www.reddit.com/r/Python/comments/4mbcrb/curldrop_upload_files_straight_from_your_terminal/
reddit
curldrop - upload files straight from your terminal... • /r/Python
1 points and 0 comments so far on reddit
Andrew Godwin - Reinventing Django for the Real-Time Web - PyCon 2016: https://www.reddit.com/r/Python/comments/4mbfue/andrew_godwin_reinventing_django_for_the_realtime/
reddit
Andrew Godwin - Reinventing Django for the Real-Time... • /r/Python
3 points and 0 comments so far on reddit
Spyder with Anaconda is unacceptably slow on OS X El Capitan. How to fix it?: https://www.reddit.com/r/Python/comments/4mbs7l/spyder_with_anaconda_is_unacceptably_slow_on_os_x/
reddit
Spyder with Anaconda is unacceptably slow on OS X El... • /r/Python
I installed the latest Anaconda version and updated everything. Spyder is just still damn slow. There is a definite lag (about 0.5 seconds) when...
My code doesn't work and I don't know why.: https://www.reddit.com/r/Python/comments/4mcaez/my_code_doesnt_work_and_i_dont_know_why/
reddit
My code doesn't work and I don't know why. • /r/Python
import random codelength = 4 guess = [] code = [] codematch = [] guessmatch = [] whites = 0 blacks = 0 ...
Create a Python App for OSX/Windows: https://www.reddit.com/r/Python/comments/4mclyh/create_a_python_app_for_osxwindows/
reddit
Create a Python App for OSX/Windows • /r/Python
Hi all, I'm currently developing a few helper scripts that I want to bundle in a neat application for OSX and Windows. One function should...
Oscar or saleor for eCommerce site development.: https://www.reddit.com/r/Python/comments/4mcmy6/oscar_or_saleor_for_ecommerce_site_development/
reddit
Oscar or saleor for eCommerce site development. • r/Python
We are considering oscar and saleor , both are pretty good but we need to add lot of new feature into it.The basic feature we need for eCommerce...
Setting values with pandas.DataFrame: http://stackoverflow.com/questions/37569881/setting-values-with-pandas-dataframe
Stackoverflow
Setting values with pandas.DataFrame
Having this DataFrame:
import pandas
dates = pandas.date_range('2016-01-01', periods=5, freq='H')
s = pandas.Series([0, 1, 2, 3, 4], index=dates)
df = pandas.DataFrame([(1, 2, s, 8)], columns=['a',
import pandas
dates = pandas.date_range('2016-01-01', periods=5, freq='H')
s = pandas.Series([0, 1, 2, 3, 4], index=dates)
df = pandas.DataFrame([(1, 2, s, 8)], columns=['a',
Optimize add row in xls file with xlwt: http://stackoverflow.com/questions/37553767/optimize-add-row-in-xls-file-with-xlwt
Stackoverflow
Optimize add row in xls file with xlwt
I have a big problem with a large xls file. When my app add a new stats record (a new row at the end of the file) there is a very long time (one minute). If I replace it with an empty xls file this...