Python Bytes: #406 What's on Django TV tonight?
Link: https://pythonbytes.fm/episodes/show/406/whats-on-django-tv-tonight
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://opensourcepledge.com?featured_on=pythonbytes"><strong>Open Source Pledge</strong></a></li>
<li><strong>Jeff Triplet's <
Link: https://pythonbytes.fm/episodes/show/406/whats-on-django-tv-tonight
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://opensourcepledge.com?featured_on=pythonbytes"><strong>Open Source Pledge</strong></a></li>
<li><strong>Jeff Triplet's <
pythonbytes.fm
What's on Django TV tonight?
News and announcements from the Python community for the week of Oct 21st, 2024
Julien Tayon: Tune your guitar with python
Link: http://beauty-of-imagination.blogspot.com/2024/10/tune-your-guitar-with-python.html
Today's exercice is just about turning a very nice example of the python soundevice module into something that works for me© to help me tune my bass.
Long story short, I suck at tuning my instrument a
Link: http://beauty-of-imagination.blogspot.com/2024/10/tune-your-guitar-with-python.html
Today's exercice is just about turning a very nice example of the python soundevice module into something that works for me© to help me tune my bass.
Long story short, I suck at tuning my instrument a
Blogspot
Tune your guitar with python
Python Anywhere: Improving PythonAnywhere's File Storage System
Link: https://blog.pythonanywhere.com/217/
PythonAnywhere has been around for over 10
years, and as our platform continues to
grow with thousands of users, we’re committed to keeping it in top shape. Part
of this involves upgrading some of the
Link: https://blog.pythonanywhere.com/217/
PythonAnywhere has been around for over 10
years, and as our platform continues to
grow with thousands of users, we’re committed to keeping it in top shape. Part
of this involves upgrading some of the
Real Python: Quiz: Pydantic: Simplifying Data Validation in Python
Link: https://realpython.com/quizzes/python-pydantic/
In this quiz, you’ll test your understanding of
Pydantic. Pydantic is a powerful data validation library for Python. You can also use a related library, pydantic-settings, for settings management.
By
Link: https://realpython.com/quizzes/python-pydantic/
In this quiz, you’ll test your understanding of
Pydantic. Pydantic is a powerful data validation library for Python. You can also use a related library, pydantic-settings, for settings management.
By
Realpython
Pydantic: Simplifying Data Validation in Python Quiz – Real Python
In this quiz, you'll test your understanding of Pydantic, a powerful data validation library for Python. You'll revisit concepts such as working with data schemas, writing custom validators, validating function arguments, and managing settings with pydantic…
Real Python: Understanding Python's Global Interpreter Lock (GIL)
Link: https://realpython.com/courses/understanding-global-interpreter-lock-gil/
The Python Global Interpreter Lock or GIL, in simple words, is a mutex (or a lock) that allows only one thread to hold the control of the Python interpreter.
This means that only one thread can be in
Link: https://realpython.com/courses/understanding-global-interpreter-lock-gil/
The Python Global Interpreter Lock or GIL, in simple words, is a mutex (or a lock) that allows only one thread to hold the control of the Python interpreter.
This means that only one thread can be in
Realpython
Understanding Python's Global Interpreter Lock (GIL) – Real Python
Python's Global Interpreter Lock or GIL, in simple words, is a mutex (or a lock) that allows only one thread to hold the control of the Python interpreter at any one time. In this video course you'll learn how the GIL affects the performance of your Python…
PyCoder’s Weekly: Issue #652 (Oct. 22, 2024)
Link: https://pycoders.com/issues/652
#652 – OCTOBER 22, 2024 View in Browser » Structural Pattern Matching in Python In this tutorial, you’ll learn how to harness the power of structural pattern matching in Python. You’ll explore t
Link: https://pycoders.com/issues/652
#652 – OCTOBER 22, 2024 View in Browser » Structural Pattern Matching in Python In this tutorial, you’ll learn how to harness the power of structural pattern matching in Python. You’ll explore t
Pycoders
PyCoder’s Weekly | Issue #652
Issue #652 of the PyCoder’s Weekly newsletter, published Oct. 22, 2024.
Real Python: Python Thread Safety: Using a Lock and Other Techniques
Link: https://realpython.com/python-thread-lock/
Python threading allows you to run parts of your code concurrently, making the code more efficient. However, when you introduce threading to your code without knowing about thread safety, you may run
Link: https://realpython.com/python-thread-lock/
Python threading allows you to run parts of your code concurrently, making the code more efficient. However, when you introduce threading to your code without knowing about thread safety, you may run
Realpython
Python Thread Safety: Using a Lock and Other Techniques – Real Python
In this tutorial, you'll learn about the issues that can occur when your code is run in a multithreaded environment. Then you'll explore the various synchronization primitives available in Python's threading module, such as locks, which help you make your…
The Python Show: 48 - Writing About Python with David Mertz
Link: https://www.pythonshow.com/p/48-writing-about-python-with-david
In this episode of the Python Show Podcast, David Mertz is our guest. David is a prolific writer about the Python programming language. From his extremely popular IPM Developerworks articles to his mu
Link: https://www.pythonshow.com/p/48-writing-about-python-with-david
In this episode of the Python Show Podcast, David Mertz is our guest. David is a prolific writer about the Python programming language. From his extremely popular IPM Developerworks articles to his mu
Pythonshow
48 - Writing About Python with David Mertz
In this episode of the Python Show Podcast, David Mertz is our guest.
PyPy: A DSL for Peephole Transformation Rules of Integer Operations in the PyPy JIT
Link: https://www.pypy.org/posts/2024/10/jit-peephole-dsl.html
As is probably apparent from the sequence of blog posts about the topic in the
last year, I have been thinking about and working on integer optimizations in the JIT
compiler a lot. This work was mainl
Link: https://www.pypy.org/posts/2024/10/jit-peephole-dsl.html
As is probably apparent from the sequence of blog posts about the topic in the
last year, I have been thinking about and working on integer optimizations in the JIT
compiler a lot. This work was mainl
PyPy
A DSL for Peephole Transformation Rules of Integer Operations in the P
As is probably apparent from the sequence of blog posts about the topic in the
last year, I have been thinking about and working on integer optimizations in the JIT
compiler a lot. This work was mainl
last year, I have been thinking about and working on integer optimizations in the JIT
compiler a lot. This work was mainl
Matt Layman: Epic Debugging, Hilarious Outcome - Building SaaS #205
Link: https://www.mattlayman.com/videos/epic-debugging-hilarious-outcome-building-saas-205/
In this episode, I dug into an issue with sign up. What I thought was going to be a minor issue to fix turned into a massively intense debugging session. We ended up going very deep with the django-al
Link: https://www.mattlayman.com/videos/epic-debugging-hilarious-outcome-building-saas-205/
In this episode, I dug into an issue with sign up. What I thought was going to be a minor issue to fix turned into a massively intense debugging session. We ended up going very deep with the django-al
Matt Layman
Epic Debugging, Hilarious Outcome - Building SaaS #205
In this episode, I dug into an issue with sign up. What I thought was going to be a minor issue to fix turned into a massively intense debugging session. We ended up going very deep with the django-allauth package to understand what was going on.
Real Python: Quiz: Defining Your Own Python Function
Link: https://realpython.com/quizzes/defining-your-own-python-function/
In this quiz, you’ll test your understanding of how to
define your own Python function.
You’ll revisit theoretical knowledge about passing values to functions, when to divide your program into separat
Link: https://realpython.com/quizzes/defining-your-own-python-function/
In this quiz, you’ll test your understanding of how to
define your own Python function.
You’ll revisit theoretical knowledge about passing values to functions, when to divide your program into separat
Realpython
Defining Your Own Python Function Quiz – Real Python
In this quiz, you'll test your understanding of how to define your own Python functions. You'll revisit both the basics and more complex syntax, such as args and kwargs, to sharpen your knowledge of function definitions in Python.
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…