Python Software Foundation: Announcing Python Software Foundation Fellow Members for Q2 2024! 🎉
Link: https://pyfound.blogspot.com/2024/10/announcing-python-software-foundation.html
The PSF is pleased to announce its second batch of PSF Fellows for 2024! Let us welcome the new PSF Fellows for Q2! The following people continue to do amazing things for the Python community:Leonard
Link: https://pyfound.blogspot.com/2024/10/announcing-python-software-foundation.html
The PSF is pleased to announce its second batch of PSF Fellows for 2024! Let us welcome the new PSF Fellows for Q2! The following people continue to do amazing things for the Python community:Leonard
Python Software Foundation Blog
Announcing Python Software Foundation Fellow Members for Q2 2024! 🎉
The PSF is pleased to announce its second batch of PSF Fellows for 2024 ! Let us welcome the new PSF Fellows for Q2 ! The following peopl...
Talk Python to Me: #482: Pre-commit Hooks for Python Devs
Link: https://talkpython.fm/episodes/show/482/pre-commit-hooks-for-python-devs
Do you struggle to make sure your code is always correct before you check it in? What about your team members' code? That one person who never wants to run the linter? Tired of dealing with tons of co
Link: https://talkpython.fm/episodes/show/482/pre-commit-hooks-for-python-devs
Do you struggle to make sure your code is always correct before you check it in? What about your team members' code? That one person who never wants to run the linter? Tired of dealing with tons of co
talkpython.fm
Pre-commit Hooks for Python Devs
Do you struggle to make sure your code is always correct before you check it in? What about your team members' code? That one person who never wants to run the linter? Tired of dealing with tons of conflicts and spurious git changes? You need git pre-commit…
Real Python: Quiz: Python Class Constructors: Control Your Object Instantiation
Link: https://realpython.com/quizzes/python-class-constructor/
In this quiz, you’ll test your understanding of
Python Class Constructors.
By working through this quiz, you’ll revisit the internal instantiation process, object initialization using .__init__(), and
Link: https://realpython.com/quizzes/python-class-constructor/
In this quiz, you’ll test your understanding of
Python Class Constructors.
By working through this quiz, you’ll revisit the internal instantiation process, object initialization using .__init__(), and
Realpython
Python Class Constructors: Control Your Object Instantiation Quiz – Real Python
In this quiz, you'll test your understanding of class constructors in Python. By working through this quiz, you'll revisit the internal instantiation process, object initialization, and fine-tuning object creation.
Real Python: The Real Python Podcast – Episode #225: Python Getting Faster and Leaner & Ideas for Django Projects
Link: https://realpython.com/podcasts/rpp/225/
What changes are happening under the hood in the latest versions of Python? How are these updates laying the groundwork for a faster Python in the coming years? Christopher Trudeau is back on the show
Link: https://realpython.com/podcasts/rpp/225/
What changes are happening under the hood in the latest versions of Python? How are these updates laying the groundwork for a faster Python in the coming years? Christopher Trudeau is back on the show
Realpython
Episode #225: Python Getting Faster and Leaner & Ideas for Django Projects – The Real Python Podcast
What changes are happening under the hood in the latest versions of Python? How are these updates laying the groundwork for a faster Python in the coming years? Christopher Trudeau is back on the show this week, bringing another batch of PyCoder's Weekly…
Real Python: Quiz: The Python Standard REPL: Try Out Code and Ideas Quickly
Link: https://realpython.com/quizzes/python-repl/
In this quiz, you’ll test your understanding of
The Python Standard REPL: Try Out Code and Ideas Quickly.
The Python REPL allows you to run Python code interactively,
which is useful for testing new i
Link: https://realpython.com/quizzes/python-repl/
In this quiz, you’ll test your understanding of
The Python Standard REPL: Try Out Code and Ideas Quickly.
The Python REPL allows you to run Python code interactively,
which is useful for testing new i
Realpython
The Python Standard REPL: Try Out Code and Ideas Quickly Quiz – Real Python
In this quiz, you'll test your understanding of the Python standard REPL. The Python REPL allows you to run Python code interactively, which is useful for testing new ideas, exploring libraries, refactoring and debugging code, and trying out examples.
Real Python: Quiz: How to Reset a pandas DataFrame Index
Link: https://realpython.com/quizzes/pandas-reset-index/
In this quiz, you’ll test your understanding of
how to reset a pandas DataFrame index.
By working through the questions, you’ll review your knowledge of indexing and also expand on what you learned in
Link: https://realpython.com/quizzes/pandas-reset-index/
In this quiz, you’ll test your understanding of
how to reset a pandas DataFrame index.
By working through the questions, you’ll review your knowledge of indexing and also expand on what you learned in
Realpython
How to Reset a pandas DataFrame Index Quiz – Real Python
This quiz will challenge your knowledge of resetting indexes in pandas DataFrames. 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…
Zato Blog: Salesforce API integrations and connected apps
Link: https://zato.io/en/blog/salesforce-credentials.html
Salesforce API integrations and connected apps
2024-10-28, by Dariusz Suchojad
Overview
This instalment in a series of articles about API integrations with Salesforce
covers connected apps - ho
Link: https://zato.io/en/blog/salesforce-credentials.html
Salesforce API integrations and connected apps
2024-10-28, by Dariusz Suchojad
Overview
This instalment in a series of articles about API integrations with Salesforce
covers connected apps - ho
Real Python: Quiz: Beautiful Soup: Build a Web Scraper With Python
Link: https://realpython.com/quizzes/beautiful-soup-web-scraper-python/
In this quiz, you’ll test your understanding of
web scraping with Python, Requests, and Beautiful Soup.
By working through this quiz, you’ll revisit how to inspect the HTML structure of your target si
Link: https://realpython.com/quizzes/beautiful-soup-web-scraper-python/
In this quiz, you’ll test your understanding of
web scraping with Python, Requests, and Beautiful Soup.
By working through this quiz, you’ll revisit how to inspect the HTML structure of your target si
Realpython
Beautiful Soup: Build a Web Scraper With Python Quiz – Real Python
In this quiz, you'll test your understanding of web scraping using Python. By working through this quiz, you'll revisit how to inspect the HTML structure of a target site, decipher data encoded in URLs, and use Requests and Beautiful Soup for scraping and…
Real Python: Beautiful Soup: Build a Web Scraper With Python
Link: https://realpython.com/beautiful-soup-web-scraper-python/
Web scraping is the automated process of extracting data from the internet. The Python libraries Requests and Beautiful Soup are powerful tools for the job. To effectively harvest the vast amount of d
Link: https://realpython.com/beautiful-soup-web-scraper-python/
Web scraping is the automated process of extracting data from the internet. The Python libraries Requests and Beautiful Soup are powerful tools for the job. To effectively harvest the vast amount of d
Realpython
Beautiful Soup: Build a Web Scraper With Python – Real Python
In this tutorial, you'll walk through the main steps of the web scraping process. You'll learn how to write a script that uses Python's Requests library to scrape data from a website. You'll also use Beautiful Soup to extract the specific pieces of information…
Trey Hunner: Adding keyboard shortcuts to the Python REPL
Link: https://treyhunner.com/2024/10/adding-keyboard-shortcuts-to-the-python-repl/
I talked about the new Python 3.13 REPL a few months ago and after 3.13 was released.
I think it’s awesome.
I’d like to share a secret feature within the Python 3.13 REPL which I’ve been finding usefu
Link: https://treyhunner.com/2024/10/adding-keyboard-shortcuts-to-the-python-repl/
I talked about the new Python 3.13 REPL a few months ago and after 3.13 was released.
I think it’s awesome.
I’d like to share a secret feature within the Python 3.13 REPL which I’ve been finding usefu
Treyhunner
Adding keyboard shortcuts to the Python REPL
I talked about the new Python 3.13 REPL a few months ago and after 3.13 was released.
I think it’s awesome. I’d like to share a secret …
I think it’s awesome. I’d like to share a secret …
Python Bytes: #407 Back to the future, destination 3.14
Link: https://pythonbytes.fm/episodes/show/407/back-to-the-future-destination-3.14
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><strong><a href="https://pythoninsider.blogspot.com/2024/10/python-3140-alpha-1-is-now-available.html?featured_on=pythonbytes">Python 3.
Link: https://pythonbytes.fm/episodes/show/407/back-to-the-future-destination-3.14
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><strong><a href="https://pythoninsider.blogspot.com/2024/10/python-3140-alpha-1-is-now-available.html?featured_on=pythonbytes">Python 3.
pythonbytes.fm
Back to the future, destination 3.14
News and announcements from the Python community for the week of Oct 28th, 2024
Django Weblog: 2025 DSF Board Candidates
Link: https://www.djangoproject.com/weblog/2024/oct/28/2025-dsf-board-candidates/
Thank you to the 21 individuals who have chosen to stand for election. This page contains their candidate statements submitted as part of the 2025 DSF Board Nominations.
Our deepest gratitude goes to
Link: https://www.djangoproject.com/weblog/2024/oct/28/2025-dsf-board-candidates/
Thank you to the 21 individuals who have chosen to stand for election. This page contains their candidate statements submitted as part of the 2025 DSF Board Nominations.
Our deepest gratitude goes to
Django Project
2025 DSF Board Candidates
Posted by Thibaud Colas on October 28, 2024
Paolo Melchiorre: 2025 Django Software Foundation board nomination
Link: https://www.paulox.net/2024/10/29/2025-django-software-foundation-board-nomination/
My self-nomination statement for the 2025 Django Software Foundation (DSF) board of directors elections
Link: https://www.paulox.net/2024/10/29/2025-django-software-foundation-board-nomination/
My self-nomination statement for the 2025 Django Software Foundation (DSF) board of directors elections
Paolo Melchiorre
2025 Django Software Foundation board nomination
My self-nomination statement for the 2025 Django Software Foundation (DSF) board of directors elections
Julien Tayon: Is chatgpt good at generating code for tuning a guitar ?
Link: http://beauty-of-imagination.blogspot.com/2024/10/is-chatgpt-good-at-generating-code-for.html
I was on a french speaking IRC chan bragging a tad about how I was doing a guitar tuner and paying attention to not fall into the pit of confusing precise and exact figures as a random computer engine
Link: http://beauty-of-imagination.blogspot.com/2024/10/is-chatgpt-good-at-generating-code-for.html
I was on a french speaking IRC chan bragging a tad about how I was doing a guitar tuner and paying attention to not fall into the pit of confusing precise and exact figures as a random computer engine
Blogspot
Is chatgpt good at generating code for tuning a guitar ?
I was on a french speaking IRC chan bragging a tad about how I was doing a guitar tuner and paying attention to not fall into the pit of con...
Real Python: Python's Magic Methods in Classes
Link: https://realpython.com/courses/magic-methods-classes/
As a Python developer who wants to harness the power of object-oriented programming, you’ll love to learn how to customize your classes using special methods, also known as magic methods or dunder met
Link: https://realpython.com/courses/magic-methods-classes/
As a Python developer who wants to harness the power of object-oriented programming, you’ll love to learn how to customize your classes using special methods, also known as magic methods or dunder met
Realpython
Python's Magic Methods in Classes – Real Python
In this video course, you'll learn what magic methods are in Python, how they work, and how to use them in your custom classes to support powerful features in your object-oriented code.
Zero to Mastery: Python Monthly Newsletter 💻🐍
Link: https://zerotomastery.io/blog/python-monthly-newsletter-october-2024/?utm_source=python-rss-feed
59th issue of Andrei Neagoie's must-read monthly Python Newsletter: Python History, Python Drama, Python Built-Ins, and much more. Read the full newsletter to get up-to-date with everything you need t
Link: https://zerotomastery.io/blog/python-monthly-newsletter-october-2024/?utm_source=python-rss-feed
59th issue of Andrei Neagoie's must-read monthly Python Newsletter: Python History, Python Drama, Python Built-Ins, and much more. Read the full newsletter to get up-to-date with everything you need t
Zero To Mastery
[October 2024] Python Monthly Newsletter 💻🐍 | Zero To Mastery
59th issue of Andrei Neagoie's must-read monthly Python Newsletter read by 15,000+ Pythonistas. Get up-to-date with the top Python news from last month.
PyCharm: Data Exploration With pandas
Link: https://blog.jetbrains.com/pycharm/2024/10/data-exploration-with-pandas/
Maybe you’ve heard complicated-sounding phrases such as ‘“Students t-test”, “regression models”, “support vector machines”, and so on. You might think there’s so much you need to learn before you can
Link: https://blog.jetbrains.com/pycharm/2024/10/data-exploration-with-pandas/
Maybe you’ve heard complicated-sounding phrases such as ‘“Students t-test”, “regression models”, “support vector machines”, and so on. You might think there’s so much you need to learn before you can
The JetBrains Blog
Data Exploration With pandas | The PyCharm Blog
You might think there’s so much you need to learn before you can do data exploration with pandas, but I am going to show you two tools to help you go faster: Summary statistics and graphs.
PyCoder’s Weekly: Issue #653 (Oct. 29, 2024)
Link: https://pycoders.com/issues/653
#653 – OCTOBER 29, 2024 View in Browser » Sudoku in Python Packaging Simon writes about a Soduku solver written by Konstin that uses the Python packaging mechanisms to do Soduku puzzles. The res
Link: https://pycoders.com/issues/653
#653 – OCTOBER 29, 2024 View in Browser » Sudoku in Python Packaging Simon writes about a Soduku solver written by Konstin that uses the Python packaging mechanisms to do Soduku puzzles. The res
Pycoders
PyCoder’s Weekly | Issue #653
Issue #653 of the PyCoder’s Weekly newsletter, published Oct. 29, 2024.
Talk Python to Me: #483: Reflex Framework: Frontend, Backend, Pure Python
Link: https://talkpython.fm/episodes/show/483/reflex-framework-frontend-backend-pure-python
Let's say you want to create a web app and you know Python really well. Your first thought might be Flask or Django or even FastAPI? All good choices but there is a lot to get a full web app into prod
Link: https://talkpython.fm/episodes/show/483/reflex-framework-frontend-backend-pure-python
Let's say you want to create a web app and you know Python really well. Your first thought might be Flask or Django or even FastAPI? All good choices but there is a lot to get a full web app into prod
talkpython.fm
Reflex Framework: Frontend, Backend, Pure Python
Let's say you want to create a web app and you know Python really well. Your first thought might be Flask or Django or even FastAPI? All good choices but there is a lot to get a full web app into production. The framework we'll talk about today, Reflex, allows…
Armin Ronacher: Make It Ephemeral: Software Should Decay and Lose Data
Link: http://lucumr.pocoo.org/2024/10/30/make-it-ephemeral
Most software that exists today does not forget. Creating software that
remembers is easy, but designing software that deliberately “forgets” is
a bit more complex. By “forgetting,” I don't mean los
Link: http://lucumr.pocoo.org/2024/10/30/make-it-ephemeral
Most software that exists today does not forget. Creating software that
remembers is easy, but designing software that deliberately “forgets” is
a bit more complex. By “forgetting,” I don't mean los
Armin Ronacher's Thoughts and Writings
Make It Ephemeral: Software Should Decay and Lose Data
Make software that is capable to forget and decay information.