Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
IslandT: Python Tutorial — Chapter 15

Link: https://islandtropicaman.com/wp/2022/10/02/python-tutorial-chapter-15/

In this chapter let us create a function based on another function with the python lambda function!
Let’s say you want to create a seed value that will be used to find the modulo with another value th
Podcast.__init__: Complete Your Hardware "Weekend Projects" In An Actual Weekend With Belay

Link: https://www.pythonpodcast.com/belay-micropython-hardware-helper-episode-379/

Working on hardware projects often has significant friction involved when compared to pure software. Brian Pugh enjoys tinkering with microcontrollers, but his "weekend projects" often took
Anwesha Das: Running Snowflake proxy

Link: http://anweshadas.in/running-snowflake-proxy/

Snowflake is a technology to allow people from all over the world to access censored applications and websites.

Similar to how VPNs assist users in getting around Internet censorship, Snowflake help
Mike Driscoll: PyDev of the Week: Mark Mikofski

Link: https://www.blog.pythonlibrary.org/2022/10/03/pydev-of-the-week-mark-mikofski/

This week we welcome Mark Mikofski as our PyDev of the Week! Mark is a core developer on the pvlib tool, which is used "for simulating the performance of photovoltaic energy systems." You can check ou
IslandT: Python math Module

Link: https://islandtropicaman.com/wp/2022/10/03/python-math-module/

math is a Python built-in module which means it comes together with the python package and you do not need to install it separately. In the following examples let us create various little programs to
Python for Beginners: How to Use Comments in Python?

Link: https://www.pythonforbeginners.com/comments/how-to-use-comments-in-python

Writing code in Python can be challenging. That’s why it’s important to be as clear as possible when naming variables and functions. A good name will explain what a variable is used for, or what a fun
Real Python: Build Enumerations of Constants With Python's Enum

Link: https://realpython.com/python-enum/

Some programming languages, like Java and C++, include syntax that supports a data type known as enumerations, or just enums. This data type allows you to create sets of semantically related constants
Python Morsels: TypeError: can only concatenate str (not "int") to str

Link: https://www.pythonmorsels.com/can-only-concatenate-str/

Python crashed with the error TypeError: can only concatenate str (not "int") to str. Essentially Python's saying you've used + between a string and a number and it's unhappy about it. Let's talk abou
Zato Blog: HL7 FHIR Integrations in Python

Link: https://zato.io/blog/posts/hl7-fhir-api-integrations-python.html


HL7 FHIR, pronounced “fire”, is a data model and message transfer protocol designed to facilitate the exchange of information
among systems used in health care settings.
In such environments, a FHIR
Codementor: Getting started with Rocksdb and Python

Link: https://www.codementor.io/pknerd/getting-started-with-rocksdb-and-python-1xslf9qqsu

In this post, I am going to discuss RocksDB. RocksDB is an embeddable persistent key-value store system developed by Facebook. It was originally forked from LevelDB which was created by Google.&hellip
IslandT: Python RegEx Module

Link: https://islandtropicaman.com/wp/2022/10/04/python-regex-module/

In this chapter let us create a few examples with Python built-in RegEx module’s methods and see what this particular module can do!
As always, you need to import the module into your python file befo
Django Weblog: Django security releases issued: 4.1.2, 4.0.8, and 3.2.16

Link: https://www.djangoproject.com/weblog/2022/oct/04/security-releases/

In accordance with our security release policy, the Django team
is issuing
Django 4.1.2,
Django 4.0.8, and
Django 3.2.16.
These releases addresses the security issue detailed below. We encourage all
u
Matt Layman: Episode 17 - Accepting Files

Link: https://www.mattlayman.com/django-riffs/accepting-files/

On this episode, we’re going to dig into file management. Unlike the static files that you create for the app yourself, you may want your app to accept files from your users. Profile pictures are a go
PyCoder’s Weekly: Issue #545 (Oct. 4, 2022)

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

#545 – OCTOBER 4, 2022 View in Browser » Building Chat With Django Channels and WebSockets Building stateful web applications can be tricky, unless you use a framework, of course. Django to the
Python Engineering at Microsoft: Contribute to Open Source with the Pythonistas at Microsoft – Hacktoberfest 2022

Link: https://devblogs.microsoft.com/python/python-hacktoberfest-2022/

The Python Cloud Developer Advocate Team and friends will be getting together October 10th at 2PM Pacific on Microsoft Developer Channel Twitch to talk Python and Hactoberfest! Hang out with Sarah Kai
Talk Python to Me: #384: Python Data Visualization - Where To Start?

Link: https://talkpython.fm/episodes/show/384/python-data-visualization-where-to-start

Do you struggle to know where to start in the wide range of Python's visualization frameworks? Not sure when to use Plotly vs. Matplotlib vs. Altair? Then this episode is for you. We have Chris Moffit
Guido van Rossum: Reasoning about asyncio.Semaphore

Link: http://neopythonic.blogspot.com/2022/10/reasoning-about-asynciosemaphore.html

 In Silicon Valley is a very exclusive fast-food restaurant, which is always open. There is one table, where one guest at a time is served an absolutely fabulous hamburger. When you arrive, you wait i
IslandT: Python Datetime Module

Link: https://islandtropicaman.com/wp/2022/10/05/python-datetime-module/

Python datetime module allows you to create an datetime object or get the date of a particular day. Let me create a few examples to demonstrate to you how to use the methods of this DateTime module.
F