Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
PyCoder’s Weekly: Issue #542 (Sept. 13, 2022)

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

#542 – SEPTEMBER 13, 2022 View in Browser » List Comprehensions Are More Powerful Than You Think List comprehensions have a lot of depth. This article takes you beyond the basics and explains ne
Python for Beginners: Select Row From a Dataframe in Python

Link: https://www.pythonforbeginners.com/basics/select-row-from-a-dataframe-in-python

Pandas dataframes are used to handle tabular data in Python. In this article, we will discuss how to select a row from a dataframe in Python. We will also discuss how we can use boolean operators to s
Real Python: How to Replace a String in Python

Link: https://realpython.com/replace-string-python/

If you’re looking for ways to remove or replace all or part of a string in Python, then this tutorial is for you. You’ll be taking a fictional chat room transcript and sanitizing it using both the .re
The Python Coding Blog: Functions in Python are Like a Coffee Machine

Link: https://thepythoncodingbook.com/2022/09/14/functions-in-python-are-like-coffee-machines/

Functions in Python are one of those topics for beginners! Most understand what functions are at a basic level. However, there’s much more detail and nuance to defining and calling functions in Python
Python Does What?!: Mock Everything

Link: https://www.pythondoeswhat.com/2022/09/mock-everything.html

 A mock object is meant to simulate any API for the purposes of testing.The python standard library includes MagicMock.>>> from unittest.mock import MagicMock>>> mock = MagicMock()>>> mock.a<MagicMock
IslandT: Python Tutorial — Chapter 4

Link: https://islandtropicaman.com/wp/2022/09/15/python-tutorial-chapter-4/

In this tutorial, I am going to show you how to work with strings in Python!
How to represent a string
Strings in python are surrounded by either single or double quotation mark.
aname = ‘Jimmy’
anoth
Amjith Ramanujam: Examples are Awesome

Link: https://blog.amjith.com/examples-are-awesome

There are two things I look for whenever I check out an Opensource project or library that I want to use. 1. Screenshots (A picture is worth a thousand words). 2. Examples (Don't tell me what to do, s
Python Bytes: #301 PyTorch Grows Up and Moves Out

Link: https://pythonbytes.fm/episodes/show/301/pytorch-grows-up-and-moves-out

<p><strong>Watch the live stream:</strong></p>

<a href='https://www.youtube.com/watch?v=oCLokYIIT0U' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>

<p><strong>About the show</strong></p>
PyCharm: PyCharm 2022.2.2 Is Out!

Link: https://blog.jetbrains.com/pycharm/2022/09/2022-2-2/

We’ve just released the second bug-fix update for PyCharm 2022.2.
You can update to this version from inside the IDE, by using the Toolbox App, or by using snaps if you are a Ubuntu user. You can also
PyBites: From Basketball Athlete to DevRel, Dropping the Fear of Failure

Link: https://pybit.es/articles/pp87-from-athlete-to-devrel-dropping-fear-of-failure/

Listen here:

This week we have Tonya Sims on the show to talk about her journey from athlete / basketball player to Python Developer Advocate / DevRel and entrepreneur.
We talk about how she combines
"Paolo Amoroso's Journal": Impractical Python Projects and Real-World Python

Link: https://journal.paoloamoroso.com/impractical-python-projects-and-real-world-python?pk_campaign=rss-feed

If you lived through the personal computer revolution of the 1980s, you may have read some books that got you hooked with programming. These works led the reader through the intellectual adventure of
Real Python: The Real Python Podcast – Episode #125: Improve Matplotlib With Style Sheets & Python Async for the Web

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

Have you thought the standard output from Matplotlib is a bit generic looking? Would you like a quick way to add style and consistency to your data visualizations? This week on the show, Christopher T
Python for Beginners: Rename Specific Columns in Dataframe

Link: https://www.pythonforbeginners.com/basics/rename-specific-columns-in-dataframe

Pandas Dataframes are used to handle tabular data in python. In this article, we will discuss how we can rename specific columns in a dataframe in python.
Rename Specific Columns in a Dataframe by Ind
death and gravity: reader 3.0 released

Link: https://death.andgravity.com/reader-3-0

Hi there!
I'm happy to announce version 3.0 of reader, a Python feed reader library.
This release removes a number of deprecated methods and attributes,
for a cleaner, more consistent API.
See the cha
IslandT: Python Tutorial — Chapter 5

Link: https://islandtropicaman.com/wp/2022/09/18/python-tutorial-chapter-5/

In this chapter let us all look at the Python Arithmetic Operators and understand how to use them all. Python arithmetic operators basically operate in the same manner as the other programming lnaguag
Zato Blog: Using OAuth in API Integrations

Link: https://zato.io/blog/posts/oauth-api-integrations.html

OAuth is often employed in processes requiring permissions to be granted to frontend applications and end users.
Yet, what we typically need in API systems integrations is a way to secure connections
The Digital Cat: First-class objects in Python - Higher-order functions, wrappers, and factories

Link: https://www.thedigitalcatonline.com/blog/2021/03/09/first-class-objects-in-python/

My new book "First-class objects in Python" is out! Grab your FREE copy here!