Planet Python RSS
214 subscribers
17.1K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Programiz: Python Program to Compute all the Permutation of the String

Link: https://www.programiz.com/python-programming/examples/permutation-of-string

In this example, you will learn to compute all the permutation of the string.
Reuven Lerner: Improve your “pandas” skills with “Pandas Workout”

Link: https://lerner.co.il/2021/08/04/improve-your-pandas-skills-with-pandas-workout/

As you might know, I’ve been working lately on my new book, Pandas Workout, with 50 exercises to improve your fluency using the “pandas” library for data analysis.

Well, I have exciting news: The boo
Django Weblog: 2021 Django Developers Survey

Link: https://www.djangoproject.com/weblog/2021/aug/04/2021-django-developers-survey/

The 2021 Django Developers Survey is now live. Please take a moment to fill it out. The survey sheds light on how different developers use Django and the related tools and technologies. After the surv
Python⇒Speed: NumPy views: saving memory, leaking memory, and subtle bugs

Link: https://pythonspeed.com/articles/numpy-memory-views/

If you’re using Python’s NumPy library, it’s usually because you’re processing large arrays that use plenty of memory.
To reduce your memory usage, chances are you want to minimize unnecessary copying
Python Bytes: #245 Fire up your Python time machine (and test some code)

Link: https://pythonbytes.fm/episodes/show/245/fire-up-your-python-time-machine-and-test-some-code

<p><strong>Watch the live stream:</strong></p>

<a href='https://www.youtube.com/watch?v=4tgVdjdULzI' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>

<p><strong>About the show</strong></p>
Python Anywhere: Ten years on

Link: https://blog.pythonanywhere.com/197/

Ten years ago today, on the blog for Project Dirigible, we announced that we’d recently
launched a new site called PythonAnywhere. It almost didn’t happen! The project
we were working on was somethi
PyBites: Do You Have a Brag Doc?

Link: https://pybit.es/articles/boost-your-motivation-with-brag-doc/

We received a reply from one of our community members the other day reminding us of an incredibly powerful technique that we use to maintain motivation and build our confidence: the Brag Doc.
A brag d
Python for Beginners: Classes in Python

Link: https://www.pythonforbeginners.com/basics/classes-in-python

If you are a beginner in python programming, you must be knowing about primitive data types like integers, floating point numbers, strings and complex numbers. Also, you might have learnt about in bui
Real Python: The Real Python Podcast – Episode #72: Starting With FastAPI and Examining Python's Import System

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

Have you heard of FastAPI? An application programming interface is vital to make your software accessible to users across the internet. FastAPI is an excellent option for quickly creating a web API t
Python Engineering at Microsoft: Python in Visual Studio Code – August 2021 Release

Link: https://devblogs.microsoft.com/python/python-in-visual-studio-code-august-2021-release/

We are pleased to announce that the August 2021 release of the Python Extension for Visual Studio Code is now available. You can download the Python extension from the Marketplace, or install it direc
Brett Cannon: What do you when you botch a release on PyPI

Link: https://snarky.ca/what-to-do-when-you-botch-a-release-on-pypi/

So you made a release on PyPI and there&aposs a mistake (we&aposve all been there). It can be as big as the whole release is bad, to just a spelling mistake in the README. Luckily there are things you
Łukasz Langa: Weekly Report 2021, August 2 - August 8

Link: https://lukasz.langa.pl/7cf5f517-87fb-473c-ae06-72afe095ac72/

While this week I wasn’t sprinting so crazily towards beating the 1,400 open PRs, we managed to keep the number of PRs around that line. In fact, I deliberately spent more time this week to do more co
Weekly Python StackOverflow Report: (cclxxxvii) stackoverflow python report

Link: http://python-weekly.blogspot.com/2021/08/cclxxxvii-stackoverflow-python-report.html

These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2021-08-07 20:23:16 GMTSimultaneous assignment indexing different list
Talk Python to Me: #328: Piccolo: A fast, async ORM for Python

Link: https://talkpython.fm/episodes/show/328/piccolo-a-fast-async-orm-for-python

ORMs are one of the main tools to put first-class data access in the hands on non-SQL-loving developers and even for those who do love SQL, making them way more productive. When you hear about ORMs in
Python Morsels: Customizing what happens when you assign an attribute

Link: https://www.pythonmorsels.com/topics/customizing-what-happens-when-you-assign-attribute/




Transcript
How can you customize what happens when you assign to a specific attribute on a Python class?
Accessing and updating attributes on a class
Here we have a class called Person:
class Perso
Talk Python to Me: #328: Piccolo: A fast, async ORM for Python (updated)

Link: https://talkpython.fm/episodes/show/328/piccolo-a-fast-async-orm-for-python-updated

ORMs are one of the main tools to put first-class data access in the hands on non-SQL-loving developers and even for those who do love SQL, making them way more productive. When you hear about ORMs in
Mike Driscoll: PyDev of the Week: Patrick Arminio

Link: https://www.blog.pythonlibrary.org/2021/08/09/pydev-of-the-week-patrick-arminio/

This week we welcome Patrick Arminio (@patrick91) as our PyDev of the Week! Patrick works on Strawberry GraphQL, a Python GraphQL library based on dataclasses. You can catch up with Patrick over on hi
Python for Beginners: Variables and Constants in Python

Link: https://www.pythonforbeginners.com/basics/variables-and-constants-in-python

While studying about programming in python, you must have encountered certain phrases like keywords, variables, constants and literals. In this article, we will learn about variables and constants and