Python Bytes: #410 Entering the Django core
Link: https://pythonbytes.fm/episodes/show/410/entering-the-django-core
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><strong><a href="https://buttondown.com/carlton/archive/thoughts-on-djangos-core/?featured_on=pythonbytes">Thoughts on Django’s Core</a>
Link: https://pythonbytes.fm/episodes/show/410/entering-the-django-core
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><strong><a href="https://buttondown.com/carlton/archive/thoughts-on-djangos-core/?featured_on=pythonbytes">Thoughts on Django’s Core</a>
pythonbytes.fm
Entering the Django core
News and announcements from the Python community for the week of Nov 18th, 2024
Paolo Melchiorre: Thoughts on my election as a DSF board member
Link: https://www.paulox.net/2024/11/18/thoughts-on-my-election-as-a-dsf-board-member/
My thoughts on my election as a member of the Django Software Foundation (DSF) board of directors.
Link: https://www.paulox.net/2024/11/18/thoughts-on-my-election-as-a-dsf-board-member/
My thoughts on my election as a member of the Django Software Foundation (DSF) board of directors.
Paolo Melchiorre
Thoughts on my election as a DSF board member
My thoughts on my election as a member of the Django Software Foundation (DSF) board of directors.
👍1
Ned Batchelder: Loop targets
Link: https://nedbatchelder.com/blog/202411/loop_targets.html
I posted a Python tidbit about how for loops can assign
to other things than simple variables, and many people were surprised or even
concerned:params = {
"query": QUERY,
"page_size": 100,
}
Link: https://nedbatchelder.com/blog/202411/loop_targets.html
I posted a Python tidbit about how for loops can assign
to other things than simple variables, and many people were surprised or even
concerned:params = {
"query": QUERY,
"page_size": 100,
}
Nedbatchelder
Loop targets
People were surprised by my example of assigning to a dict item in a for loop. Here’s more explanation.
Mike Driscoll: How to Debug Your Textual Application
Link: https://www.blog.pythonlibrary.org/2024/11/19/how-to-debug-your-textual-application/
Textual is a great Python package for creating a lightweight, powerful, text-based user interface. That means you can create a GUI in your terminal with Python without learning curses! But what happen
Link: https://www.blog.pythonlibrary.org/2024/11/19/how-to-debug-your-textual-application/
Textual is a great Python package for creating a lightweight, powerful, text-based user interface. That means you can create a GUI in your terminal with Python without learning curses! But what happen
Mouse Vs Python
How to Debug Your Textual Application - Mouse Vs Python
Textual is a great Python package for creating a lightweight, powerful, text-based user interface. That means you can create a GUI in your terminal with
Zato Blog: IMAP and OAuth2 Integrations with Microsoft 365
Link: https://zato.io/en/blog/imap-oauth2-microsoft365.html
IMAP and OAuth2 Integrations with Microsoft 365
2024-11-19, by Dariusz Suchojad
Overview
This is the first in a series of articles about automation of and integrations with Microsoft 365 cloud
Link: https://zato.io/en/blog/imap-oauth2-microsoft365.html
IMAP and OAuth2 Integrations with Microsoft 365
2024-11-19, by Dariusz Suchojad
Overview
This is the first in a series of articles about automation of and integrations with Microsoft 365 cloud
Real Python: Working With TOML and Python
Link: https://realpython.com/courses/working-with-toml-python/
TOML—Tom’s Obvious Minimal Language—is a reasonably new configuration file format that the Python community has embraced over the last couple of years. TOML plays an essential part in the Python ecosy
Link: https://realpython.com/courses/working-with-toml-python/
TOML—Tom’s Obvious Minimal Language—is a reasonably new configuration file format that the Python community has embraced over the last couple of years. TOML plays an essential part in the Python ecosy
Realpython
Working With TOML and Python – Real Python
TOML is a configuration file format that's becoming increasingly popular in the Python community. In this video course, you'll learn the syntax of TOML and explore how you can work with TOML files in your own projects.
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
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
The JetBrains Blog
Code Faster with JetBrains AI in PyCharm | The PyCharm Blog
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.
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
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
Pycoders
PyCoder’s Weekly | Issue #656
Issue #656 of the PyCoder’s Weekly newsletter, published Nov. 19, 2024.
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.
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.
Blogspot
Python Insider: Python 3.14.0 alpha 2 released
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
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
Blogspot
The advantages of HTML as a data model over basic declarative ORM approach
Seth Michael Larson: SEGA Genesis & Mega Drive games and ROMs from Steam
Link: https://sethmlarson.dev/sega-genesis-and-mega-drive-games-and-roms-from-steam?utm_campaign=rss
SEGA Genesis & Mega Drive games and ROMs from Steam
Link: https://sethmlarson.dev/sega-genesis-and-mega-drive-games-and-roms-from-steam?utm_campaign=rss
SEGA Genesis & Mega Drive games and ROMs from Steam
sethmlarson.dev
SEGA Genesis & Mega Drive games and ROMs from Steam
TDLR: SEGA is discontinuing
the "SEGA Mega Drive and Genesis Classics" on December 6th.
This is an affordable way to purchase
these games and ROMs compared to the original cartridges. Buy games you...
the "SEGA Mega Drive and Genesis Classics" on December 6th.
This is an affordable way to purchase
these games and ROMs compared to the original cartridges. Buy games you...
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
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
Realpython
NumPy Practical Examples: Useful Techniques – Real Python
In this tutorial, you'll learn how to use NumPy by exploring several interesting examples. You'll read data from a file into an array and analyze structured arrays to perform a reconciliation. You'll also learn how to quickly chart an analysis and turn a…
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
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
Treyhunner
Python Black Friday & Cyber Monday sales (2024)
Ready for some Python skill-building sales? This is my seventh annual compilation of Python learning deals. Lots of Python sales Here are Python- …
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
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
Django Project
Announcing the 6.x Steering Council elections 🚀
Posted by Thibaud Colas on Nov. 21, 2024
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
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
Realpython
NumPy Practical Examples: Useful Techniques Quiz – Real Python
This quiz will test your understanding of working with NumPy arrays. You won't find all the answers in the tutorial, so you'll need to do some extra investigating. By finding all the answers, you're sure to learn some interesting things along the way.
Real Python: Quiz: Interacting With Python
Link: https://realpython.com/quizzes/interacting-with-python/
In this quiz, you’ll test your understanding of the different ways you can interact with Python.
By working through this quiz, you’ll revisit key concepts related to Python interaction in interactive
Link: https://realpython.com/quizzes/interacting-with-python/
In this quiz, you’ll test your understanding of the different ways you can interact with Python.
By working through this quiz, you’ll revisit key concepts related to Python interaction in interactive
Realpython
Interacting With Python Quiz – Real Python
In this quiz, you'll test your understanding of the different ways of interacting with Python. By working through this quiz, you'll revisit key concepts related to Python interaction in interactive mode using the REPL, through Python script files, and within…
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
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
Realpython
Expression vs Statement in Python: What's the Difference? Quiz – Real Python
In this quiz, you'll test your understanding of Python expressions vs statements. Knowing the difference between these two is crucial for writing efficient and readable Python code.
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
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
pypodcats.live
Trailer: Episode 7 with Anna Makarudze
A preview of our chat with Anna Makarudze. Watch the full episode on November 20, 2024
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
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
Django Project
2024 Django Developers Survey
Posted by Thibaud Colas and JetBrains on Nov. 21, 2024
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
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
Realpython
Episode #229: The Joy of Tinkering & Python Free-Threading Performance – The Real Python Podcast
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 show this week, bringing another batch of PyCoder's Weekly…