Planet Python RSS
215 subscribers
16.8K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
PyCharm

Link:


Join us Monday, October 31, at 5:00 pm UTC (check other timezones) for our live webinar, New UI for Your IDE: A Glimpse Into the Future with JetBrains Developer Advocates.
REGISTER
JetBrains released
Mike Driscoll: PyDev of the Week: Yeray Diaz

Link: https://www.blog.pythonlibrary.org/2022/11/28/pydev-of-the-week-yeray-diaz/

This week we welcome Yeray Diaz (@yera_ee) as our PyDev of the Week! Yeray is a moderator on PyPI.org . Yeray also writes a blog and has several projects on his GitHub profile.
Let's take a few moment
Real Python: How to Get a List of All Files in a Directory With Python

Link: https://realpython.com/get-all-files-in-directory-python/

Getting a list of all the files and folders in a directory is a natural first step for many file-related operations in Python. When looking into it, though, you may be surprised to find various ways t
Łukasz Langa: Weekly Report August 1 - 7

Link: https://lukasz.langa.pl/a0e3ee6f-771e-443e-b888-64e5499b8e53/

This week I spent helping 3.11.0rc1 get released. This included both reviewing PRs and helping release blockers get resolved. There were two in particular that I spent most time on so I’ll talk briefl
Python for Beginners: Sort a Pandas Series in Python

Link: https://www.pythonforbeginners.com/basics/sort-a-pandas-series-in-python

Pandas series is used to handle sequential data in python. In this article, we will discuss different ways to sort a pandas series in Python. 
Table of ContentsSort a series using the sort_values() me
Łukasz Langa: I built an AM5 PC for Python-related things

Link: https://lukasz.langa.pl/c1bab41c-501a-4ff0-bca6-7e1b0f968818/

16 cores, 128 GB of RAM, an RTX 3090. Sounds great but… don’t be an early adopter. While I’m pretty stoked about what this new machine lets me accomplish, it was quite painful to get it running.
Declassed Art: torcontrol and Tor circuits managers

Link: https://declassed.art/en/blog/2022/11/29/torcontrol-and-tor-circuits-managers

Stem did not encourage me to read specifications.
I f*cked error handling up and now proudly introduce my own minimalistic Tor controller.
testmon: New features in 1.3.x

Link: https://testmon.org/testmon_1.3_is_out_intro.html

New in pytest-testmon version 1.3.x.
There has been a lot of compatiblity upgrades and improvements.
To find more go to: New features in 1.3.x
testmon: pytest-testmon v1.4 with xdist support is out.

Link: https://testmon.org/testmon_1.4x_is_out_intro.html

I'm happy to announce that this long-standing limitation of pytest-testmon has been fixed.
To find more go to: New features in 1.4.x
Zero to Mastery: Python Monthly Newsletter 💻🐍

Link: https://zerotomastery.io/blog/python-monthly-newsletter-november-2022/?utm_source=python-rss-feed

36th issue of the Python Monthly Newsletter! Read by 25,000+ Python developers every month. This monthly Python newsletter covers the latest Python news so that you stay up-to-date with the industry a
S. Lott: Functional Programming and Finite State Automata (FSA)

Link: http://slott-softwarearchitect.blogspot.com/2022/11/functional-programming-and-finite-state.html

When I talk about functional programming in Python, folks like to look for place where functional programming isn't appropriate. They latch onto finite-state automata (FSA) because "state" of an autom
Django Weblog: 2023 DSF Board Election Results

Link: https://www.djangoproject.com/weblog/2022/nov/29/2023-dsf-board-election-results/


The 2023 Board is transitional to our new staggered 2 year term board membership model.
Here are the results of this year's election as selected by ranked choice voting:


Chaim Kirby*
Jacob Kaplan-M
Real Python: Using Python's pathlib Module

Link: https://realpython.com/courses/pathlib-python/

Have you struggled with file path handling in Python? With the pathlib module, the struggle is now over! You no longer need to scratch your head over code like this:
>>>>>> path.rsplit('\\', maxsplit=
Talk Python to Me: #391: Pyscript powered by MicroPython

Link: https://talkpython.fm/episodes/show/391/pyscript-powered-by-micropython

No Python announcement of 2022 was met with more fanfare than pyscript. This project, announced at PyCon 2022, allows you to write Python files and run them in your browser in place of JavaScript or e
PyCharm: The Second Release Candidate for PyCharm 2022.3 Is Out!

Link: https://blog.jetbrains.com/pycharm/2022/11/2022-3-rc-2/

PyCharm 2022.3 is just around the corner and the second Release Candidate is here!
You can download the new version from our website, update directly from the IDE or via the free Toolbox App, or use s
PyCoder’s Weekly: Issue #553 (Nov. 29, 2022)

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

#553 – NOVEMBER 29, 2022 View in Browser » Microsoft Power BI and Python: Two Superpowers Combined In this tutorial, you’ll learn how to install and configure Microsoft Power BI to work with Pyt
Python Bytes: #312 AI Goes on Trial For Writing Code

Link: https://pythonbytes.fm/episodes/show/312/ai-goes-on-trial-for-writing-code

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

<p><strong>About the show</strong></p>

<p>Sponsored by <a href="https://pythonbytes.fm/
John Ludhi/nbshare.io: Pandas Read and Write Excel File

Link: https://www.nbshare.io/notebook/894032303/Pandas-Read-and-Write-Excel-File/







Pandas Read and Write Excel File










Make sure you have openpyxl package installed. Otherwise you will get following error ...
ModuleNotFoundError: No module named 'openpyxl'










Ins
Python for Beginners: Drop Elements From a Series in Python

Link: https://www.pythonforbeginners.com/basics/drop-elements-from-a-series-in-python

Pandas series is very useful for handling data having ordered key-value pairs. In this article, we will discuss different ways to drop elements from a pandas series.
Table of ContentsDrop Elements Fro