Planet Python RSS
213 subscribers
17K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Sebastian Witowski: type() vs. isinstance()

Link: https://switowski.com/blog/type-vs-isinstance


Python is a dynamically typed language. A variable, initially created as a string, can be later reassigned to an integer or a float. And the interpreter won’t complain:
name = "Sebastian"
# Dynamical
Codementor: AI, ML and Python: Let’s See How far They Can Go Together

Link: https://www.codementor.io/theronald248/ai-ml-and-python-let-s-see-how-far-they-can-go-together-1b9praj476

You might have heard these words together : AI, Machine Learning and Python. The reason behind this is that Python is one of the most suitable languages for AI and ML. Python is one of the simplest...
Stack Abuse: Python: Get Number of Elements in a List

Link: https://stackabuse.com/python-get-number-of-elements-in-a-list/

Introduction
Getting the number of elements in a list in Python is a common operation. For example, you will need to know how many elements the list has whenever you iterate through it. Remember that
Python Circle: How to post messages to Microsoft teams channel using Python

Link: https://pythoncircle.com/post/725/how-to-post-messages-to-microsoft-teams-channel-using-python/

In this article we will see how to send alerts or messages to microsoft teams channels using connectors or incoming webhook. we used python's requests module to send post request.
Matt Layman: Capped Social Network - Building SaaS #76

Link: https://www.mattlayman.com/building-saas/capped-social-network/

In this episode, I started a new project to build a different kind of social network. This social network will contain a max number of connections to encourage thoughtful choice when growing your pers
EuroPython: EuroPython 2021 will be run online

Link: https://blog.europython.eu/post/632055258029473792

In the last few weeks, we had a close look at the how the situation around COVID-19 is panning out. Unfortunately, things are not moving in a direction where we’d feel confident to hold next year’s co
Python Circle: Solving Django error 'NoReverseMatch at' URL with arguments '()' and keyword arguments '{}' not found.

Link: https://pythoncircle.com/post/424/solving-django-error-noreversematch-at-url-with-arguments-and-keyword-arguments-not-found/

Solving Django error 'NoReverseMatch at' URL with arguments '()' and keyword arguments '{}' not found, URL not found in Django, No reverse match in Django template error
Real Python: The Real Python Podcast – Episode #31: Python Return Statement Best Practices and Working With the map() Function

Link: https://realpython.com/podcasts/rpp/31/

The Python return statement is such a fundamental part of writing functions. Is it possible you missed some best practices when writing your own return statements? This week on the show, David Amos re
Talk Python to Me: #286 Python and ML at NASA Jet Propulsion Laboratory (JPL)

Link: https://talkpython.fm/episodes/show/286/python-and-ml-at-nasa-jet-propulsion-laboratory-jpl

NASA's Jet Propulsion Laboratory (JPL)'s primary function is the construction and operation of planetary robotic spacecraft, though it also conducts Earth-orbit and astronomy missions. It is also resp
The Digital Cat: Flask project setup: TDD, Docker, Postgres and more - Part 2

Link: https://www.thedigitalcatonline.com/blog/2020/07/06/flask-project-setup-tdd-docker-postgres-and-more-part-2/

In this series of posts I explore the development of a Flask project with a setup that is built with efficiency and tidiness in mind, using TDD, Docker and Postgres.
Catch-up¶
In the previous post we
The Digital Cat: Flask project setup: TDD, Docker, Postgres and more - Part 3

Link: https://www.thedigitalcatonline.com/blog/2020/07/07/flask-project-setup-tdd-docker-postgres-and-more-part-3/

In this series of posts I explore the development of a Flask project with a setup that is built with efficiency and tidiness in mind, using TDD, Docker and Postgres.
Catch-up¶
In the first and second
Weekly Python StackOverflow Report: (ccxlvi) stackoverflow python report

Link: http://python-weekly.blogspot.com/2020/10/ccxlvi-stackoverflow-python-report.html

These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2020-10-17 21:54:11 GMTHow can I generate three random integers that sa
EuroPython: EuroPython 2020: Edited videos are online

Link: https://blog.europython.eu/post/632313693115416577

We’re happy to announce that all edited videos of this year’s conference are now available on our YouTube channel:EuroPython 2020 PlaylistWe have 131 videos available in total, covering a very broad s
Doug Hellmann: sphinxcontrib-spelling 6.0.0

Link: http://feeds.doughellmann.com/~r/doughellmann/python/~3/lgU6yyNTdGs/

sphinxcontrib-spelling is a spelling checker for Sphinx-based documentation. It uses PyEnchant to produce a report showing misspelled words. What’s new in 6.0.0? add release notes for recent changes s
Anarcat: CDPATH replacements

Link: https://anarc.at/blog/2020-10-18-cdpath-replacement/

after reading this post I figured I might as well bite the bullet
and improve on my CDPATH-related setup, especially because it does not
work with Emacs. so i looked around for autojump-related altern