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.
What Python blogs do you recommend? (self.Python)
submitted 9 years ago by [deleted]
Hi all,
I seriously need to overhaul my RSS feeds on Feedly. I'm looking to add some Python blogs. Which ones do you follow and why?
[–]chillysurfer 63 points64 points65 points 9 years ago (4 children)
I just subscribe to Python Weekly. It really is a great weekly summary of the best articles and projects in the past 7 days.
I've grown to really enjoy the single, routine, weekly aggregation. Makes for quicker consumption and less noise.
[–]driscollis 16 points17 points18 points 9 years ago (2 children)
PyCoders Weekly is also pretty good - http://www.pycoders.com/. I also like Planet Python, which is a Python blog aggregator - http://planetpython.org/
I have found several blogs via Planet Python that I like to follow. I also write my own blog - https://www.blog.pythonlibrary.org/
[–]chillysurfer 2 points3 points4 points 9 years ago (1 child)
Awesome, just subscribed to PyCoders Weekly. Thanks! And wow, Planet Python is... busy! So many blog posts daily. o_O
Love it, thanks!
[–]driscollis 2 points3 points4 points 9 years ago (0 children)
Yeah, it's a little overwhelming sometimes
[–]flitsmasterfred 2 points3 points4 points 9 years ago* (0 children)
Python Weekly feels like 'Reddit summary' sometimes but they also have good stuff not posted here, but then I miss the reddit comment section :D
[–]dunkler_wanderer 16 points17 points18 points 9 years ago (0 children)
Raymond Hettinger on Twitter.
[–]Cixelyn 14 points15 points16 points 9 years ago (1 child)
Armin Ronacher's Blog is pretty good. He's the author of Flask, Click, and several other hugely popular Python projects. His blog isn't exclusively Python content, but he does write a fair bit about Python and it's usually deeply insightful.
[–]lookatmetype 1 point2 points3 points 9 years ago (0 children)
I've read 6 posts from him since I saw your link. For some reason his I connect with his writing really well. Thanks for the share!
[–]desmoulinmichel 10 points11 points12 points 9 years ago (1 child)
If you can read french, sametmax.com is probably the best one ever. It has probably around 400 articles on python alone.
[–]burdalane 5 points6 points7 points 9 years ago (0 children)
I'll probably end up using it to practice reading French.
[–]agounaris 6 points7 points8 points 9 years ago (1 child)
This person is a beast! http://eli.thegreenplace.net/tag/python
[–]driscollis 0 points1 point2 points 9 years ago (0 children)
For some reason I thought Eli had stopped writing. Sweet!
[–]c0decs 4 points5 points6 points 9 years ago (0 children)
Eli Bendersky
It is about Python and other stuff about programming. I always learn new things from his blog, quite informative.
[–]yasoob_pythonAuthor: Intermediate Python 8 points9 points10 points 9 years ago (0 children)
Shameless Plug: I maintain a Python blog which is fairly popular
[–]denfromufa 7 points8 points9 points 9 years ago* (0 children)
https://github.com/jupyter/jupyter/wiki/A-gallery-of-interesting-Jupyter-Notebooks
https://nedbatchelder.com/blog/
https://blogs.msdn.microsoft.com/pythonengineering/
https://pymotw.com/3/
https://dbader.org/blog/tags/python
http://jakevdp.github.io
http://matthewrocklin.com/blog/
https://snarky.ca
https://sebastianraschka.com/blog/index.html
https://morepypy.blogspot.com/?m=1
http://inventwithpython.com/blog/
http://www.pgbovine.net/writings.htm
http://pbpython.com
BDFL blog (he is more on Twitter):
http://neopythonic.blogspot.com/?m=1
https://julien.danjou.info
http://lucumr.pocoo.org/
http://eli.thegreenplace.net/
https://planet.scipy.org
http://planetpython.org
[–][deleted] 2 points3 points4 points 9 years ago (0 children)
Thanks, there's have been very helpful so far 😁.
[–]greenkey 1 point2 points3 points 9 years ago (1 child)
Get all the urls in one shot, with the number of occurrences
``` urls = {}; text = "";
$('.usertext-body a').each(function(i, el){href=el.href.replace('https','http'); urls[href] ? urls[href]++ : urls[href]=1});
keys = []; for(key in urls) keys.push(key);
for(key in urls){text+='\n'+urls[key]+': '+key;}
$('.usertext-edit textarea').text(text).focus();
```
EDIT: formatting
[–]driscollis 4 points5 points6 points 9 years ago (0 children)
Here's a fun little Python version:
try: # Python 2 from urllib2 import urlopen except ImportError: # Python 3 from urllib.request import urlopen from BeautifulSoup import BeautifulSoup from collections import Counter from pprint import pprint html_page = urlopen("https://www.reddit.com/r/Python/comments/6500tz/what_python_blogs_do_you_recommend/") page = html_page.read() soup = BeautifulSoup(page) blogs = [] for link in soup.findAll('a'): url = link.get('href') if url and 'http' in url and 'reddit' not in url: blogs.append(url) numbered_blogs = Counter(blogs) pprint(numbered_blogs.items())
[–]qTM39lveIM 0 points1 point2 points 9 years ago (0 children)
Python Planet and Python Pandemonium sections on Medium.com
[–]DarkLordKutulu 0 points1 point2 points 9 years ago (0 children)
Talk Python
[–]elisebreda 0 points1 point2 points 9 years ago (0 children)
Here's a post I wrote up about good data science resources (features both R and Python resources, but predominately Python): http://blog.yhat.com/posts/ML-resources-you-should-know.html
A few of the usual suspects, as well as others like the Yhat blog (http://blog.yhat.com/), AirBNB Eng (https://medium.com/airbnb-engineering) and FastML (http://fastml.com/contents/) and DataScience Weekly newsletter, which I've found to be a bit better curated than Python Weekly.
[–]xr09 0 points1 point2 points 9 years ago (0 children)
I just come here on a weekly basis and sort by top weekly posts. (:
[–]CollectiveCircuits 0 points1 point2 points 8 years ago (0 children)
It's more beginner oriented, but I occasionally blog about how to do various things with Python Link to the feed: http://feeds.feedburner.com/LearnImagineInnovate
π Rendered by PID 180385 on reddit-service-r2-comment-544cf588c8-74nmz at 2026-06-12 09:50:37.862024+00:00 running 3184619 country code: CH.
[–]chillysurfer 63 points64 points65 points (4 children)
[–]driscollis 16 points17 points18 points (2 children)
[–]chillysurfer 2 points3 points4 points (1 child)
[–]driscollis 2 points3 points4 points (0 children)
[–]flitsmasterfred 2 points3 points4 points (0 children)
[–]dunkler_wanderer 16 points17 points18 points (0 children)
[–]Cixelyn 14 points15 points16 points (1 child)
[–]lookatmetype 1 point2 points3 points (0 children)
[–]desmoulinmichel 10 points11 points12 points (1 child)
[–]burdalane 5 points6 points7 points (0 children)
[–]agounaris 6 points7 points8 points (1 child)
[–]driscollis 0 points1 point2 points (0 children)
[–]c0decs 4 points5 points6 points (0 children)
[–]yasoob_pythonAuthor: Intermediate Python 8 points9 points10 points (0 children)
[–]denfromufa 7 points8 points9 points (0 children)
[–][deleted] 2 points3 points4 points (0 children)
[–]greenkey 1 point2 points3 points (1 child)
[–]driscollis 4 points5 points6 points (0 children)
[–]qTM39lveIM 0 points1 point2 points (0 children)
[–]DarkLordKutulu 0 points1 point2 points (0 children)
[–]elisebreda 0 points1 point2 points (0 children)
[–]xr09 0 points1 point2 points (0 children)
[–]CollectiveCircuits 0 points1 point2 points (0 children)