Planet Python RSS
217 subscribers
16.7K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Julien Tayon: The advantages of HTML as a data model over basic declarative ORM approach

Link: http://beauty-of-imagination.blogspot.com/2024/11/the-advantages-of-html-as-data-model.html

Very often, backend devs don't want to write code.
For this, we use one trick : derive HTML widget for presentation, database access, REST endpoints from ONE SOURCE of truth and we call it MODEL.
A tr
Real Python: NumPy Practical Examples: Useful Techniques

Link: https://realpython.com/numpy-example/

The NumPy library is a Python library used for scientific computing. It provides you with a multidimensional array object for storing and analyzing data in a wide variety of ways. In this tutorial, yo
Trey Hunner: Python Black Friday & Cyber Monday sales (2024)

Link: https://treyhunner.com/2024/11/python-black-friday-and-cyber-monday-sales-2024/

Ready for some Python skill-building sales?
This is my seventh annual compilation of Python learning deals.
I’m publishing this post extra early this year, so bookmark this page and set a calendar eve
Django Weblog: Announcing the 6.x Steering Council elections 🚀

Link: https://www.djangoproject.com/weblog/2024/nov/21/announcing-the-6x-steering-council-elections/

Today, we’re announcing early elections for the Django Software Foundation Steering Council over the 6.x Django release cycle. Elected members will be on the Steering Council for two years, from the e
Real Python: Quiz: NumPy Practical Examples: Useful Techniques

Link: https://realpython.com/quizzes/numpy-example/

In this quiz, you’ll test your understanding of the techniques covered in the tutorial
NumPy Practical Examples: Useful Techniques.
By working through the questions, you’ll review your understanding o
Real Python: Quiz: Expression vs Statement in Python: What's the Difference?

Link: https://realpython.com/quizzes/python-expression-vs-statement/

In this quiz, you’ll test your understanding of
Expression vs Statement in Python: What’s the Difference?
By working through this quiz, you’ll revisit the key differences between expressions and state
PyPodcats: Trailer: Episode 7 With Anna Makarudze

Link: https://pypodcats.live/episodes/ep-7-trailer/

A preview of our chat with Anna Makarudze. Watch the full episode on November 20, 2024A preview of our chat with Anna Makarudze. Watch the full episode on November 20, 2024Sneak Peek of our chat with
Django Weblog: 2024 Django Developers Survey

Link: https://www.djangoproject.com/weblog/2024/nov/21/2024-django-developers-survey/

The DSF is once again partnering with JetBrains to run the 2024 Django Developers Survey 🌈
Please take a moment to fill it out! It should only take about 10 minutes to complete. It’s an important metr
Real Python: The Real Python Podcast – Episode #229: The Joy of Tinkering & Python Free-Threading Performance

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

What keeps your spark alive for developing software and learning Python? Do you like to try new frameworks, build toy projects, or collaborate with other developers? Christopher Trudeau is back on the
Eli Bendersky: GoMLX: ML in Go without Python

Link: https://eli.thegreenplace.net/2024/gomlx-ml-in-go-without-python/

In the previous post
I talked about running ML inference in Go through a Python sidecar process. In
this post, let's see how we can accomplish the same tasks without using Python
at all.

How ML model
Talk Python to Me: #486: CSnakes: Embed Python code in .NET

Link: https://talkpython.fm/episodes/show/486/csnakes-embed-python-code-in-.net

If you are a .NET developer or work in a place that has some of those folks, wouldn't it be great to fully leverage the entirety of PyPI with it's almost 600,000 packages inside your .NET code? But ho
EuroPython Society: 2024 General Assembly Announcement

Link: https://www.europython-society.org/2024-general-assembly-announcement/

We’re excited to invite you to this year’s General Assembly meeting! We’ll gather on Sunday, December 1st, 2024, from 20:00 to 21:00 CET. Just like in recent years, we’ll use Zoom, and additional join
Real Python: How to Iterate Through a Dictionary in Python

Link: https://realpython.com/iterate-through-dictionary-python/

Python offers several ways to iterate through a dictionary, such as using .items() to access key-value pairs directly and .values() to retrieve values only.
By understanding these techniques, you’ll b
Zero to Mastery: Python Monthly Newsletter 💻🐍

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

60th issue of Andrei Neagoie's must-read monthly Python Newsletter: Python 3.13, Django Project Ideas, GPU Bubble is Bursting, and much more. Read the full newsletter to get up-to-date with everything
Real Python: Efficient String Concatenation in Python

Link: https://realpython.com/python-string-concatenation/

Python string concatenation is a fundamental operation that combines multiple strings into a single string. In Python, you can concatenate strings using the + operator or the += operator for appending