Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Codementor: Top programming languages of 2019

Link: https://www.codementor.io/narayanapilli/top-programming-languages-of-2019-ywjp77uce

The most popular languages according to the world’s largest organization for engineering and applied science.
It can be hard to gauge which programming language to learn — should you go for the...
Kushal Das: Permanent Record: the life of Edward Snowden

Link: https://kushaldas.in/posts/permanent-record-the-life-of-edward-snowden.html



The personal life and thinking of the ordinary person who did an extraordinary
thing.
A fantastic personal narrative of his life and thinking process. The book does
not get into technical details, b
Chris Moffitt: Happy Birthday Practical Business Python!

Link: https://pbpython.com/five-years.html


Introduction
On September 17th, 2014, I published my first article which means that today is the 5th birthday of
Practical Business Python. Thank you to all my readers and all those that have support
Real Python: Python Debugging With pdb

Link: https://realpython.com/courses/python-debugging-pdb/

Nowadays, we often take for granted the excellent debuggers built into our favorite IDEs. But how do you debug your Python code when you don’t have the luxury of using an IDE?
pdb, short for Python De
Anarcat: FSF resignations

Link: https://anarc.at/blog/2019-09-16-fsf-resignations/

I have been hesitant in renewing my membership to the Free Software
Foundation for a while, but now I never want to deal with the FSF
until Richard Stallman, president and founder of the free software
PyCoder’s Weekly: Issue #386 (Sept. 17, 2019)

Link: https://pycoders.com/issues/386

#386 – SEPTEMBER 17, 2019 View in Browser » Call for Proposals for PyCon 2020 Is Open The submission deadlines are: Tutorial proposals are due November 22, 2019. Talk, Charlas, Poster, and Educa
Yasoob Khalid: Looking for an internship for Summer 2020

Link: https://pythontips.com/2019/09/17/looking-for-an-internship-for-summer-2020/

Hi lovely people! Hope everything is going well on your end. I asked you guys last year for helping me find a kick-ass internship and you all came through. I ended up working at ASAPP over the summer
A. Jesse Jiryu Davis: Free Coaching For PyGotham Speakers

Link: https://emptysqua.re/blog/pygotham-free-speaker-coaching-2019/

I help organize PyGotham, NYC’s annual conference about the Python programming language. For the third year in a row, we’re giving our speakers free sessions with a professional speaking coach, opera
Codementor: why python is the best-suited programming language machine learning

Link: https://www.codementor.io/narayanapilli/why-python-is-the-best-suited-programming-language-machine-learning-yxpsouwm6

Machine Learning is the hottest trend in modern times. According to Forbes, Machine learning patents grew at a 34% rate between 2013 and 2017 and this is only set to increase in the future. And...
Matt Layman: Python alternative to Docker

Link: https://www.mattlayman.com/blog/2019/python-alternative-docker/

Deploying a Python app to a server is surprisingly hard. Without blinking, you’ll be dealing with virtual environments and a host of other complications.
The landscape of deployment methods is huge. W
Podcast.__init__: Cultivating The Python Community In Argentina

Link: https://www.pythonpodcast.com/facundo-batista-python-community-argentina-episode-229/

The Python community in Argentina is large and active, thanks largely to the motivated individuals who manage and organize it. In this episode Facundo Batista explains how he helped to found the Pytho
Talk Python to Me: #230 Python in digital humanities research

Link: https://talkpython.fm/episodes/show/230/python-in-digital-humanities-research

You've often heard me talk about Python as a superpower. It can amplify whatever you're interested in or what you have specialized in for your career. This episode is an amazing example of this. You'l
Real Python: How to Convert a Python String to int

Link: https://realpython.com/convert-python-string-to-int/

Integers are whole numbers. In other words, they have no fractional component. Two data types you can use to store an integer in Python are int and str. These types offer flexibility for working with
Mike Driscoll: Python Code Kata: Fizzbuzz

Link: http://www.blog.pythonlibrary.org/2019/09/18/python-code-kata-fizzbuzz/

A code kata is a fun way for computer programmers to practice coding. They are also used a lot for learning how to implement Test Driven Development (TDD) when writing code. One of the popular program
Audrey Roy Greenfeld: Voronoi Mandalas

Link: http://www.codemakesmehappy.com/2019/09/voronoi-mandalas.html

SciPy has tools for creating Voronoi tessellations. Besides the obvious data science applications, you can use them to make pretty art like this:The above was generated by this code:I started with Car
Wingware Blog: Viewing Arrays and Data Frames in Wing Pro 7

Link: https://wingware.com/blog/array-viewer

Wing Pro 7 introduced an array and data frame viewer that can be used to inspect data
objects in the debugger. Values are transferred to the IDE according to what portion of
the data is visible on the
Stack Abuse: Solving Sequence Problems with LSTM in Keras: Part 2

Link: https://stackabuse.com/solving-sequence-problems-with-lstm-in-keras-part-2/

This is the second and final part of the two-part series of articles on solving sequence problems with LSTMs. In the part 1 of the series, I explained how to solve one-to-one and many-to-one sequence
Matt Layman: Get Out, Git! - Building SaaS #33

Link: https://www.mattlayman.com/building-saas/get-out-git/

In this episode, I removed the Git clone from the server. This is some of the final cleanup to streamline the deployment process.
Before we could remove the clone completely, we had to decouple the fi