Planet Python RSS
217 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
PyBites: What’s enough as a developer and in life?

Link: https://pybit.es/articles/what-is-enough/

Welcome back to the Pybites podcast!
Watch here:


Listen here:

Welcome back to the Pybites podcast! Today we hone in on the concept of “Enough”, which we read about in the book “Psychology of Money”
Tryton News: Newsletter June 2023

Link: https://discuss.tryton.org/t/newsletter-june-2023/6134


After the Tryton 6.8 release the developers are sprinting toward the next long term support (LTS) version 7.0 which is planned to be released in November 2023. Also please don’t miss our News from th
Stack Abuse: Simple NLP in Python with TextBlob: Lemmatization

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

Introduction
TextBlob is a package built on top of two other packages, one of them is called Natural Language Toolkit, known mainly in its abbreviated form as NLTK, and the other is Pattern. NLTK is a
PyCharm: PyCharm 2023.3 EAP 2: Live Templates for Django Forms and Models, Support for Polars DataFrames

Link: https://blog.jetbrains.com/pycharm/2023/06/2023-3-eap-2/

The second Early Access Program build brings a bunch of features for both web developers and data scientists. Try new, time-saving live templates for Django forms, models, and views, as well as suppor
Luke Plant: Django and Sass/SCSS without Node.js or a build step

Link: https://lukeplant.me.uk/blog/posts/django-sass-scss-without-nodejs-or-build-step/

Although they are less necessary than in the past, I like to use a CSS pre-processor when doing web development. I used to use LessCSS, but recently I’ve found that I can use Sass without needing eit
ListenData: AutoGPT : Everything You Need To Know

Link: https://www.listendata.com/2023/04/autogpt-explained-everything-you-need.html

In this post we have covered AutoGPT in detail. By end of this tutorial, you will not only understand how it works but also will be able to run it on your system. Auto-GPT has gained a significant amo
Real Python: The Real Python Podcast – Episode #158: Building Python CI With Docker & Applying for a Hacker Initiative Grant

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

Do you need a refresher on using Docker with Python? Would you like to learn how to configure a continuous integration pipeline with modern tools and Docker? This week on the show, Christopher Trudeau
Talk Python to Me: #418: How To Keep A Secret in Python Apps

Link: https://talkpython.fm/episodes/show/418/how-to-keep-a-secret-in-python-apps

Think about the different APIs and databases your application works with. Every one of them requires either an API key or a database connection string that itself contains a password. How do you let y
Brett Cannon: Proposing a struct syntax for Python

Link: https://snarky.ca/proposing-a-struct-syntax/

Story timeWhen I go on vacation with a fellow Python developer, inevitably I will talk about Python. 😁 Back in September, Andrea and I drove the Cabot Trail with our friends Dusty and Jen, which led t
Mike Driscoll: PyDev of the Week: Daniel Alejandro Mesejo-León

Link: https://www.blog.pythonlibrary.org/2023/06/05/pydev-of-the-week-daniel-alejandro-mesejo-leon/

This week we welcome Daniel Alejandro Mesejo-León (@searchsort) as our PyDev of the Week! Daniel is the creator of the trex package, which is used for efficient keyword extraction using RegEx.
You can
eGenix.com: Python Meeting Düsseldorf - 2023-06-07

Link: https://www.egenix.com/company/news/Python-Meeting-Duesseldorf-2023-06-07

The following text is in German, since we're announcing a regional user group meeting in Düsseldorf, Germany.

Ankündigung
Das nächste Python Meeting Düsseldorf findet an folgendem Termin statt:

07.0
Real Python: Using the NumPy Random Number Generator

Link: https://realpython.com/numpy-random-number-generator/

Random numbers are a very useful feature in many different types of programs, from mathematics and data analysis through to computer games and encryption applications. You may be surprised to learn th
Django Weblog: Django bugfix release: 4.2.2

Link: https://www.djangoproject.com/weblog/2023/jun/05/bugfix-release/

Today we've issued the 4.2.2 bugfix release.
The release package and checksums are available from our downloads page, as well as from the Python Package Index. The PGP key ID used for this release is
Stack Abuse: How to Check if a String is Empty or None in Python

Link: https://stackabuse.com/how-to-check-if-a-string-is-empty-or-none-in-python/

Introduction
In Python, it's often important to check whether a string is empty or None before performing operations on it. This can prevent unexpected errors and make your code more robust. But what
Read the Docs: Read the Docs newsletter - June 2023

Link: https://blog.readthedocs.com/newsletter-june-2023/

News and updates

⚠️ A .readthedocs.yaml configuration file will be required for your future builds.
Read more about this change in Migrate your project to .readthedocs.yaml configuration file v2.
✅️
Ned Batchelder: Multi-syntax configuration examples

Link: https://nedbatchelder.com/blog/202306/multisyntax_configuration_examples.html

Coverage.py reads settings from a number of different files, in either
INI-file or TOML syntax, with different section headings depending on the
file. This could be confusing: the docs showed the syn
ListenData: Transformers Agent: AI Tool That Automates Everything

Link: https://www.listendata.com/2023/06/transformers-agent.html

We have a new AI tool in the market called Transformers Agent which is so powerful that it can automate just about any task you can think of. It can generate and edit images, video, audio, answer ques
Stack Abuse: Finding Numbers in Various Data Types in Python

Link: https://stackabuse.com/finding-numbers-in-various-data-types-in-python/

Introduction
When working with Python, we often have to deal with data in the form of numbers or words. Sometimes, words and numbers are stored together, and our needs compel us to separate numbers fr
Nicola Iarocci: Python `decimal.getcontext` does not work with bpython

Link: https://nicolaiarocci.com/python-decimal.getcontext-does-not-work-with-bpython/

I have been working on a side project for which I’m using bpython, a “fancy interface to the Python interpreter.” If you use the Python REPL often, you should check it out. It offers unique features l