Planet Python RSS
215 subscribers
16.8K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
PyCharm: Webinar: “Django-in-PyCharm Tips: Reloaded”

Link: https://blog.jetbrains.com/pycharm/2022/10/webinar-django-in-pycharm/

Two and a half years ago, we held a “Django tips in PyCharm” webinar. This refresher swaps out some tips, but also shows lots of fresh goodness in the IDE: the new UI, remote and sharing options, endp
Zato Blog: HL7 FHIR Security with Basic Auth, OAuth and SSL/TLS

Link: https://zato.io/blog/posts/hl7-fhir-security.html

HL7 FHIR Security
Preliminary reading: HL7 FHIR Integrations in Python

FHIR servers offer their APIs using REST, which in turn means that they are HTTP servers under the hood. As a result,
a few comm
IslandT: Python Example — Count the number of even numbers from 1 to 100

Link: https://islandtropicaman.com/wp/2022/10/10/python-example-count-the-number-of-even-numbers-from-1-to-100/

An even number is a number that can be divided by two, for example, 2, 4, 6, 8, and 10. In this example let us create a simple Python program that can count the number of the even numbers from 1 to 10
Mike Driscoll: PyDev of the Week: Sybren Stüvel

Link: https://www.blog.pythonlibrary.org/2022/10/10/pydev-of-the-week-sybren-stuvel/

This week we welcome Sybren Stüvel (@sastuvel) as our PyDev of the Week! Sybren is a core maintainer of the Python-RSA package and also works on Blender.
You can see what else Sybren is up to over on
Python for Beginners: Split a Numpy Array in Python

Link: https://www.pythonforbeginners.com/basics/split-a-numpy-array-in-python

Numpy arrays are one of the most efficient data structures for handling numerical data. You can perform different mathematical operations on numpy arrays using built-in functions. In this article, we
TestDriven.io: Deploying a Django App to Dokku on a DigitalOcean Droplet

Link: https://testdriven.io/blog/django-dokku/

This tutorial looks at how to deploy a Django application to Dokku on a DigitalOcean droplet.
Real Python: Python News: What's New From September 2022?

Link: https://realpython.com/python-news-september-2022/

In September 2022, the Python 3.11.0rc2 release candidate version became available for you to test and stay on top of Python’s latest features. This release is the last preview version before the fina
Python Morsels: Unindenting multi-line strings in Python

Link: https://www.pythonmorsels.com/dedent/

Need a multi-line string but don't want to include a big block of manually dedented text in your Python code? Use textwrap.dedent!



Table of contents

Manually dedenting multi-line strings
Using tex
Kushal Das: Introducing pyarti, python module for the Tor Project

Link: https://kushaldas.in/posts/introducing-pyarti-python-module-for-the-tor-project.html


python3 -m pip install pyarti

pyarti is a Python module written in
Rust using Arti from the Tor
Project. Right now pyarti is in the initial stage, and you can create a SOCKS5
proxy object, and pass
Mike Driscoll: The Python Quiz Book Kickstarter

Link: https://www.blog.pythonlibrary.org/2022/10/10/the-python-quiz-book-kickstarter/


Quizzes are a fun way to test your knowledge of something.  They make you think. The Python Quiz Book is all about brain teasers for the Python programming language. The Python Quiz Book isn't made t
PyBites: Become a more effective learner with Russell Helmstedter

Link: https://pybit.es/articles/pp90-become-a-more-effective-learner/

Listen now:

This week we have Russell Helmstedter (@rhelmstedter) on the show to talk about a book about learning that will blow your mind: Learn Better We talk through the six facets of learning the
IslandT: Python Example — What is the total ASCII values of characters in the Hello World string

Link: https://islandtropicaman.com/wp/2022/10/11/python-example-what-is-the-total-ascii-values-of-characters-in-the-hello-world-string/

I always want to know what is the total value of all the ASCII values of characters in the Hello World string. In order to get the ASCII value of a character, I will use the Python ord method to find
Real Python: Providing Multiple Constructors in Your Python Classes

Link: https://realpython.com/courses/multiple-constructors-python/

Sometimes you need to write a Python class that provides multiple ways to construct objects. In other words, you want a class that implements multiple constructors. This kind of class comes in handy w
PyCharm: PyCharm 2022.2.3 Is Out!

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

We are releasing PyCharm 2022.2.3, which contains important fixes for workflows, including remote interpreters, and fixes for working with MicroPython plugin and the recent Matplotlib 3.6.0 package.
Brett Cannon: Unravelling `if` statements

Link: https://snarky.ca/unravelling-if-statements/

After the initial posting of my summary post about my syntactic sugar series, I received the following reply to one of my tweets:🤔 wondering… ‘if/else’ (14 on your list) can be implemented in terms of
PyCoder’s Weekly: Issue #546 (Oct. 11, 2022)

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

#546 – OCTOBER 11, 2022 View in Browser » Using a Memory Profiler in Python & What It Can Teach You Have you used a memory profiler to gauge the performance of your Python application? Maybe you
Stack Abuse: Instance Segmentation with YOLOv7 in Python

Link: https://stackabuse.com/instance-segmentation-with-yolov7-in-python/

Introduction
Object detection is a large field in computer vision, and one of the more important applications of computer vision "in the wild". From it, instance segmentation was extracted, and is tas
Python Software Foundation: Join the Python Developers Survey 2022: Share and learn about the community

Link: http://pyfound.blogspot.com/2022/10/join-python-developers-survey-2022.html

This year we are conducting the fourth iteration of the official Python Developers Survey. The goal is to capture the current state of the language and the ecosystem around it. By comparing the result
The Python Coding Blog: Mini-Post: Exploring Python Functions Through Experimentation

Link: https://thepythoncodingbook.com/2022/10/11/exploring-python-functions-through-experimentation/

Read the docs. Look at the source code. Yes, these are great tips to figure out what’s happening underneath the hood. But sometimes you want to do a bit of experimentation and exploration of your own