I just finished annotating a 10-year old Python codebase with types (for mypy-checking): https://www.reddit.com/r/Python/comments/4s0zlq/i_just_finished_annotating_a_10year_old_python/
reddit
I just finished annotating a 10-year old Python... • /r/Python
4 points and 0 comments so far on reddit
How do I extend the django oscar customer models fields?: http://stackoverflow.com/questions/38247536/how-do-i-extend-the-django-oscar-customer-models-fields
Stackoverflow
How do I extend the django oscar customer models fields?
How do I extend the django-oscar customer models fields? I have extended the registration form to include more fields, in apps/customer/forms.py
class EmailUserCreationForm(forms.ModelForm):
e...
class EmailUserCreationForm(forms.ModelForm):
e...
need clarification with this line of code: https://www.reddit.com/r/Python/comments/4s32uu/need_clarification_with_this_line_of_code/
reddit
need clarification with this line of code • /r/Python
I'm working on a project using raspberry pi,ADC and a temperature sensor,the ADC outputs a stream of bits that should be read to determine the...
I just finished making my first reddit bot, can some people test it?: https://www.reddit.com/r/Python/comments/4s3acs/i_just_finished_making_my_first_reddit_bot_can/
reddit
I just finished making my first reddit bot, can some... • /r/Python
So you just summon it by doing +/u/ImgurLinkingBot url. For example +/u/ImgurLinkingBot https://gyazo.com/c688e50e7fb83441f27e12e34cf23e00 Afaik...
How would I return the length of a stack without making a function inside the class: https://www.reddit.com/r/Python/comments/4s3m8h/how_would_i_return_the_length_of_a_stack_without/
reddit
How would I return the length of a stack without... • /r/Python
class Stack: '''A last-in, first-out (LIFO) stack of items''' def __init__(self): '''(Stack) -> NoneType ...
Understanding uwsgi, threads, processes, and GIL: https://www.reddit.com/r/Python/comments/4s40ge/understanding_uwsgi_threads_processes_and_gil/
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
How to determine coordinate of grid elements of an image: http://stackoverflow.com/questions/38243055/how-to-determine-coordinate-of-grid-elements-of-an-image
Stackoverflow
How to determine coordinate of grid elements of an image
Given an image of with a known dimension (eg. 14782 x5495 pixels) and a desired square size (e.g. width,height = 696 pixels) size, how can I get the coordinates of each element in the grid?
In
In
How do I optimally use the six months I have to better myself at Python?: https://www.reddit.com/r/Python/comments/4s50j7/how_do_i_optimally_use_the_six_months_i_have_to/
reddit
How do I optimally use the six months I have to better... • /r/Python
0 points and 0 comments so far on reddit
Building Read It Later Mobile Application Using Python and Ionic Framework: https://www.reddit.com/r/Python/comments/4s56rg/building_read_it_later_mobile_application_using/
reddit
Building Read It Later Mobile Application Using Python... • /r/Python
1 points and 0 comments so far on reddit
Is it a security issue to pin the version of the "certifi" package in requirements.txt?: https://www.reddit.com/r/Python/comments/4s57p5/is_it_a_security_issue_to_pin_the_version_of_the/
reddit
Is it a security issue to pin the version of the... • /r/Python
My project uses *requests* with *certifi*. From time to time I use *pip freeze* to generate a requirements.txt file, which enters my source...
I made a python 3.5 tool to tweet about new releases of your followed artists. Closing the Spotify gap in this area.: https://www.reddit.com/r/Python/comments/4s58t3/i_made_a_python_35_tool_to_tweet_about_new/
reddit
I made a python 3.5 tool to tweet about new releases... • /r/Python
2 points and 0 comments so far on reddit
From a pythonist point of view, what is the best resource to learn javascript?: https://www.reddit.com/r/Python/comments/4s5s9n/from_a_pythonist_point_of_view_what_is_the_best/
reddit
From a pythonist point of view, what is the best... • /r/Python
Hey guys. Python was my first language and I want to dive more into javascript. What would you think is a great resource to learn Javascript...
Tensorflow - What does ops constructors mean?: https://www.reddit.com/r/Python/comments/4s5xjh/tensorflow_what_does_ops_constructors_mean/
reddit
Tensorflow - What does ops constructors mean? • /r/Python
In this link - https://www.tensorflow.org/versions/r0.9/get_started/basic_usage.html#basic-usage under the building the graph heading there's a...
Do you maintain versions of dependencies of dependencies?: https://www.reddit.com/r/Python/comments/4s5t1f/do_you_maintain_versions_of_dependencies_of/
reddit
Do you maintain versions of dependencies of dependencies? • /r/Python
Lets say I have a project which has a dependency A v2.3 and this in turn has dependency B v3.4. If you never use B directly in your project, do...
Django include template tag in for loop only catches first iteration: http://stackoverflow.com/questions/38250436/django-include-template-tag-in-for-loop-only-catches-first-iteration
Stack Overflow
Django include template tag in for loop only catches first iteration
I have a comments section on some pages on my site that I build with a {% for ... %} loop (and another nested loop for comment replies. The section was hacked together, and I am still learning web
Program never finishes don't see why: https://www.reddit.com/r/Python/comments/4s67qz/program_never_finishes_dont_see_why/
reddit
Program never finishes don't see why • /r/Python
The program below was running for almost 48 hours and never finished. I have written the same one in Octave and Julia, I only timed how long Julia...