Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
CodersLegacy: Python grequests: Making Asynchronous HTTP Requests

Link: https://coderslegacy.com/python-grequests-making-asynchronous-http-requests/

In the world of web development, making HTTP requests is a common task. Whether you’re fetching data from an API, scraping a website, or communicating with a remote server, the ability to perform HTTP
TechBeamers Python: Generate All Subarrays of an Array in Python

Link: https://www.techbeamers.com/generate-all-subarrays-of-an-array-in-python/

In this tutorial, we will explore three methods to generate all subarrays of an array in Python. Subarrays are contiguous subsets of elements within an array. Let’s find out what these three ways are
PyCharm: PyCharm 2023.3 EAP 4 Is Out!

Link: https://blog.jetbrains.com/pycharm/2023/10/2023-3-eap-4/

You can download the build from our website, get it from the free Toolbox App, or update to it using snaps if you’re an Ubuntu user.

Download PyCharm 2023.3 EAP

The fourth build of the Early Access
Mike Driscoll: PyDev of the Week: Laysa Uchoa

Link: https://www.blog.pythonlibrary.org/2023/10/30/pydev-of-the-week-laysa-uchoa/

This week, we welcome Laysa Uchoa (@laysauchoa) as our PyDev of the Week!  Laysa is very active in the PyLadies group and gives many talks at various conferences.
You can catch up with Laysa’s work by
Real Python: How to Use Type Hints for Multiple Return Types in Python

Link: https://realpython.com/python-type-hints-multiple-types/

In Python, type hinting is an optional yet useful feature to make your code easier to read, reason about, and debug. With type hints, you let other developers know the expected data types for variable
Erik Marsja: Combine Year and Month Columns in Pandas

Link: https://www.marsja.se/combine-year-and-month-columns-in-pandas/

The post Combine Year and Month Columns in Pandas appeared first on Erik Marsja.
In data analysis, the ability to combine year and month columns in Pandas is important. It opens doors to time-based in
Test and Code: 208: Tests with no assert statements

Link: https://testandcode.com/episodes/208-tests-with-no-assert-statements

Why on earth would you want to write a test with no assert statements?After all, aren't assert statements how you decide wether a test passes or fails?In this episode, we walk through a handful of use
Zero to Mastery: Python Monthly Newsletter 💻🐍

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

47th issue of Andrei Neagoie's must-read monthly Python Newsletter: why did Python win, hidden Python features, and much more. Read the full newsletter to get up-to-date with everything you need to kn
PyBites: Sentry, a Developer’s Partner, Interview with Co-Founder David Cramer

Link: https://pybit.es/articles/sentry-a-developers-partner-interview-with-co-founder-david-cramer/

This week PDM coaches Hugh + Ryan talk with David Cramer, Co-founder and CTO of Sentry!
Listen here:

Also on YouTube:


They delve into the journey of Sentry and its rise as an essential tool for dev
Will Kahn-Greene: Tecken/Socorro: Code info lookup: retrospective (2023)

Link: https://bluesock.org/~willkg/blog/mozilla/socorro_tecken_code_info_retro.html


Project

time:
6 weeks

impact:

improved visibility on set of crash reports by fixing symbolication and
signatures
better understanding of consequences of sampling Firefox / Windows < 8.1
/ ESR cras
PyCoder’s Weekly: Issue #601 (Oct. 31, 2023)

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

#601 – OCTOBER 31, 2023 View in Browser » Boost Your Coding Productivity With Ptpython Learn how to enhance your Python development workflow with auto-completion, syntax highlighting, history na
TypeThePipe: Add new not nullable column while working with SQLModel and Alembic migrations.

Link: https://typethepipe.com/post/sqlmodel-alembic-add-not-nullable-column/

pre > code.sourceCode { white-space: pre; position: relative; }
pre > code.sourceCode > span { display: inline-block; line-height: 1.25; }
pre > code.sourceCode > span:empty { height: 1.2em; }
.source
Django Weblog: Django security releases issued: 4.2.7, 4.1.13, and 3.2.23

Link: https://www.djangoproject.com/weblog/2023/nov/01/security-releases/

In accordance with our security release policy, the Django team
is issuing
Django 4.2.7,
Django 4.1.13, and
Django 3.2.23.
These releases addresses the security issue detailed below. We encourage all
Mike Driscoll: How to Create a pyd File in Python

Link: https://www.blog.pythonlibrary.org/2023/11/01/how-to-create-a-pyd-file-in-python/

Python has several other Python files besides the traditional *.py file that it supports. In this tutorial, you will learn about the PYD file.
A PYD file is a dynamic link library (DLL) written in Pyt