Planet Python RSS
217 subscribers
16.7K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
PyCharm: Code Faster with JetBrains AI in PyCharm

Link: https://blog.jetbrains.com/pycharm/2024/11/code-faster-with-jetbrains-ai-in-pycharm/

PyCharm 2024.3 comes with many improvements to JetBrains AI to help you code faster. I’m going to walk you through some of these updates in this blog post. 
Natural language inline AI prompt
You can n
PyCoder’s Weekly: Issue #656 (Nov. 19, 2024)

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

#656 – NOVEMBER 19, 2024 View in Browser » How to Debug Your Textual Application TUI applications require a full terminal which most IDEs don’t implement. To make matters more complicated, TUIs
Python Insider: Python 3.14.0 alpha 2 released

Link: https://pythoninsider.blogspot.com/2024/11/python-3140-alpha-2-released.html

Alpha 2? But Alpha 1 only just came out!
https://www.python.org/downloads/release/python-3140a2/
This is an early developer preview of Python
3.14
Major
new features of the 3.14 series, compared to 3.
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