Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Talk Python to Me: #373: Reinventing Azure's Python CLI

Link: https://talkpython.fm/episodes/show/373/reinventing-azures-python-cli

Deploying and managing your application after you create it can be a big challenge. Cloud platforms such as Azure have literally hundreds of services. Which ones should you choose? How do you link the
PyCoder’s Weekly: Issue #533 (July 12, 2022)

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

#533 – JULY 12, 2022 View in Browser » Python 3.11 Preview: TOML and tomllib Python 3.11 will be released in the fall of 2022. In this tutorial, you’ll install the latest beta release of Python
Read the Docs: Read the Docs newsletter - July 2022

Link: https://blog.readthedocs.com/newsletter-july-2022/


Summer has come,
which means our overall development has slowed a bit as the team takes some well-deserved vacation time.
That said,
we’re still excited about our recent hire and the ongoing work we’
Python for Beginners: Convert CSV to PDF file in python

Link: https://www.pythonforbeginners.com/basics/convert-csv-to-pdf-file-in-python

CSV files contain comma-separated values that usually contain tabular. Sometimes, we might need to covert a csv file into a PDF file. In this article, we will discuss how we can convert a csv file to
Real Python: NumPy's max() and maximum(): Find Extreme Values in Arrays

Link: https://realpython.com/numpy-max-maximum/

The NumPy library supports expressive, efficient numerical programming in Python. Finding extreme values is a very common requirement in data analysis. The NumPy max() and maximum() functions are two
PyCharm: PyCharm 2022.2 EAP 6 Is Available

Link: https://blog.jetbrains.com/pycharm/2022/07/2022-2-eap-6/

With the major release of PyCharm 2022.2 quickly approaching, we are putting the finishing touches on the new features and enhancements. At this stage, we are particularly keen to get your feedback so
scikit-learn: The Value of Open Source Sprints, the scikit-learn Experience

Link: https://blog.scikit-learn.org/events/sprints-value/














Author:
Reshama Shaikh


With contributions from: Gaël Varoquaux, Andreas Mueller, Olivier Grisel, Julien Jerphanion, Guillaume LeMaitre
Top Line Summary
Sprints are
Real Python: The Real Python Podcast – Episode #117: Measuring Python Code Quality, Simplicity, and Maintainability

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

How maintainable is your Python code? Is it possible to hold the code for your functions in your head? When is it appropriate to use measurements in a code review? This week on the show, Reka Horvath
Python for Beginners: Convert CSV to HTML Table in Python

Link: https://www.pythonforbeginners.com/basics/convert-csv-to-html-table-in-python

CSV files contain comma-separated values that usually contain tabular. Sometimes, we might need to render a csv file into an HTML page. In this article, we will discuss how we can convert a csv file t
Kushal Das: dgplug mailing list has a new home

Link: https://kushaldas.in/posts/dgplug-mailing-list-has-a-new-home.html


We were using the mailman2 instance provided by Dreamhost for many years as the mailing list for dgplug. But, over the years many
participants had trouble with receiving emails. In the last few years
"Morphex's Blogologue": An SSL TCP client/server implementation in Python

Link: http://blogologue.com/blog_entry?id=1658082823X26

Related to work I found myself needing a solution to pass messages, so I started working on something simple, just to get the basics down.I started out with the idea of doing it over HTTPS, but after
Podcast.__init__: Gain A Deeper Understanding Of What Your Code Is Doing And Where It Spends Its Time With VizTracer

Link: https://www.pythonpodcast.com/viztracer-visual-python-profiling-episode-371/

As your code scales beyond a trivial level of complexity and sophistication it becomes difficult or impossible to know everything that it is doing. The flow of logic and data through your software and
Mike Driscoll: PyDev of the Week: Reindert-Jan Ekker

Link: https://www.blog.pythonlibrary.org/2022/07/18/pydev-of-the-week-reindert-jan-ekker/

This week we welcome Reindert-Jan Ekker (@rjekker) as our PyDev of the Week! Reindart is a freelance teacher who teaches Python, Java, Django, Bash and more. You can learn more about what he teaches a
Python for Beginners: List of Dictionaries to CSV in Python

Link: https://www.pythonforbeginners.com/basics/list-of-dictionaries-to-csv-in-python

We use dictionaries in python to store key-value pairs. Similarly, we use a CSV file to store records that contain values for specific fields. In this article, we will discuss how we can convert a lis
Nicola Iarocci: "A project you maintain has been designated as critical"

Link: https://nicolaiarocci.com/a-project-you-maintain-has-been-designated-as-critical/

Last week, I got a mail from PyPI, the Python package index. They informed me that one of my open source projects had been designated as ‘critical,’ and I was therefore required to enable two-factor a
Real Python: Build a Flashcards App With Django

Link: https://realpython.com/django-flashcards-app/

Flashcards are a great tool when you want to memorize a new topic or learn a new language.
You write a question on the front of the card and the answer on the back of the card.
Then you can test your
"Morphex's Blogologue": Thread-safe message database for SMPS

Link: http://blogologue.com/blog_entry?id=1658158645X94

I hacked a little more on the SMPS project today, which resulted in the following commit:https://github.com/morphex/smps/commit/8c565c561c0a9593f4d5e...A pretty straight-forward message passing queue,
Django Weblog: Django 4.1 release candidate 1 released

Link: https://www.djangoproject.com/weblog/2022/jul/19/django-41-rc1/

Django 4.1 release candidate 1 is the final opportunity for you to try out the profusion of new features before Django 4.1 is released.
The release candidate stage marks the string freeze and the call
PyPy: Implementing a Toy Optimizer

Link: https://www.pypy.org/posts/2022/07/toy-optimizer.html

In this blog post I want to show the complete code (in Python3) of how a very
simple optimizer for sequences of operations can work. These algorithms could
be part of a (really simple) compiler, or a