Planet Python RSS
213 subscribers
17K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Python Morsels: Looping over multiple iterables at once

Link: https://www.pythonmorsels.com/topics/looping-over-multiple-iterables/



Related Article:

Loop Better: a deeper look at iteration in Python
How to loop with indexes in Python

Transcript
Often we have to loop over two iterables at the same time. An iterable is anything
Stack Abuse: Simple NLP in Python With TextBlob: Tokenization

Link: https://stackabuse.com/simple-nlp-in-python-with-textblob-tokenization/

Introduction
The amount of textual data on the Internet has significantly increased in the past decades. There's no doubt that the processing of this amount of information must be automated, and the T
Reuven Lerner: Ask me anything!

Link: https://lerner.co.il/2020/10/13/ask-me-anything/

Later this month, I’ll appear on the “Exploiting with Teja Kummarikuntla” podcast. As part of that appearance, I’ll be doing an AMA (“ask me anything”) segment — but in order for that to happen, I nee
PyCoder’s Weekly: Issue #442 (Oct. 13, 2020)

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

#442 – OCTOBER 13, 2020 View in Browser » Exploring the New Features of Python 3.9 Python 3.9 has arrived! Real Python contributors Geir Arne Hjelle and Christopher Trudeau are walking you throu
Stack Abuse: Generating Synthetic Data with Numpy and Scikit-Learn

Link: https://stackabuse.com/generating-synthetic-data-with-numpy-and-scikit-learn/

Introduction
In this tutorial, we'll discuss the details of generating different synthetic datasets using Numpy and Scikit-learn libraries. We'll see how different samples can be generated from variou
Real Python: Data Management With Python, SQLite, and SQLAlchemy

Link: https://realpython.com/python-sqlite-sqlalchemy/

All programs process data in one form or another, and many need to be able to save and retrieve that data from one invocation to the next. Python, SQLite, and SQLAlchemy give your programs database fu
Mike Driscoll: ReportLab 101 – Creating Fonts on the Canvas (Video)

Link: https://www.blog.pythonlibrary.org/2020/10/14/reportlab-101-creating-fonts-on-the-canvas-video/

In this tutorial, you will learn how to use ReportLab’s standard built-in fonts when generating PDFs with Python.

The post ReportLab 101 – Creating Fonts on the Canvas (Video) appeared first on The M
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