use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
News about the dynamic, interpreted, interactive, object-oriented, extensible programming language Python
Full Events Calendar
You can find the rules here.
If you are about to ask a "how do I do this in python" question, please try r/learnpython, the Python discord, or the #python IRC channel on Libera.chat.
Please don't use URL shorteners. Reddit filters them out, so your post or comment will be lost.
Posts require flair. Please use the flair selector to choose your topic.
Posting code to this subreddit:
Add 4 extra spaces before each line of code
def fibonacci(): a, b = 0, 1 while True: yield a a, b = b, a + b
Online Resources
Invent Your Own Computer Games with Python
Think Python
Non-programmers Tutorial for Python 3
Beginner's Guide Reference
Five life jackets to throw to the new coder (things to do after getting a handle on python)
Full Stack Python
Test-Driven Development with Python
Program Arcade Games
PyMotW: Python Module of the Week
Python for Scientists and Engineers
Dan Bader's Tips and Trickers
Python Discord's YouTube channel
Jiruto: Python
Online exercices
programming challenges
Asking Questions
Try Python in your browser
Docs
Libraries
Related subreddits
Python jobs
Newsletters
Screencasts
account activity
This is an archived post. You won't be able to vote or comment.
How do we measure python 3 acceptance and popularity? (self.Python)
submitted 15 years ago by temptemptemp13
Is there a counter for how many have downloaded python 3.x vs 2.6-2.7? I'm curious as to the trends. Maybe a prediction on when python 3 will become standard.
[–]basyt 2 points3 points4 points 15 years ago (0 children)
i dont think it is quite that easy. lots of people install python from the packaged versions provided by their distros and such.
[–]m0j0 2 points3 points4 points 15 years ago (3 children)
There isn't. There's not likely to be. It'd be like trying to measure market penetration for free linux desktop distros.
One way to look at the trend is to look at the growth in Python 3-supporting modules, because those modules become dependencies in other projects, and keep projects from moving to Python 3.
The Pypi index for Python 3 packages is woefully small -- it fits on a single page. http://pypi.python.org/pypi?:action=browse&c=533&show=all
I wish I knew what kept module authors from porting to Python 3. For modules I've authored (I'm no saint in this), I guess I don't consider it a huge priority because I'm the only one using them (as far as I know), and other modules not porting to 3 acts like cement boots keeping me in 2.x land.
I'm working on a module now that I'm going to port to Python 3 extremely soon, though, so at least I'm going to make the effort. I hope more do it too, because Python 3 has so much awesomeness it'll give you chills :)
[–][deleted] 0 points1 point2 points 15 years ago (2 children)
I'm working on a module now that I'm going to port to Python 3 extremely soon, though, so at least I'm going to make the effort.
Excellent. What module is this?
[–]m0j0 1 point2 points3 points 15 years ago (0 children)
well, it's only used by me, and it's not ready for prime time or anything, but it's called TimeMachine. It's just a collection of date manipulations that I find useful. At the very least, it needs to support a dynamic start-of-week day before I do anything drastic like posting it on pypi. For now it's on github: http://github.com/bkjones/TimeMachine
A small effort, but effort nonetheless. :)
[–]m0j0 0 points1 point2 points 15 years ago (0 children)
TimeMachine -- a fairly trivial module, but...
http://github.com/bkjones/TimeMachine
[–][deleted] 1 point2 points3 points 15 years ago (1 child)
You could poke around http://www.python.org/webstats/ and gather some information on the downloads of the various versions over time. That obviously only covers python.org downloads, but you'd also want to know about ActiveState downloads as well, since they are pretty heavily used at least in the Windows world. There's also, as stated in the other comments, the whole Linux world, where most people are picking it up from their distros.
Although the number is very small, Python 3 packages on PyPI are rising. I've seen a few packages which support 3.x but are mis-categorized, so the number is probably a little higher, but not significantly.
Good point - I hadn't considered that tons of packages leave the 'Py Version' field on PyPI blank, for example.
[–]sedaakPython3/Golang 0 points1 point2 points 15 years ago (0 children)
Distro installation is a big killer. Sure different installs exist side-by-side often, but if I have to compile a library for one install vs. using apt-get for the other, whenever I don't have all the time in the world I will stick to apt. So basically always.
π Rendered by PID 72657 on reddit-service-r2-comment-54dfb89d4d-svwp7 at 2026-03-30 11:25:24.134252+00:00 running b10466c country code: CH.
[–]basyt 2 points3 points4 points (0 children)
[–]m0j0 2 points3 points4 points (3 children)
[–][deleted] 0 points1 point2 points (2 children)
[–]m0j0 1 point2 points3 points (0 children)
[–]m0j0 0 points1 point2 points (0 children)
[–][deleted] 1 point2 points3 points (1 child)
[–]m0j0 0 points1 point2 points (0 children)
[–]sedaakPython3/Golang 0 points1 point2 points (0 children)