Brian Okken: pytest Primary Power Course Is Ready
Link: https://pythontest.com/posts/2023/pytest-primary-power-course-is-ready/
Everything you need to get started with pytest and use it effectively.
Learn about:
Test Functions Structure functions effectively Fixtures setup, teardown, and so much more Builtin Fixtures m
Link: https://pythontest.com/posts/2023/pytest-primary-power-course-is-ready/
Everything you need to get started with pytest and use it effectively.
Learn about:
Test Functions Structure functions effectively Fixtures setup, teardown, and so much more Builtin Fixtures m
Pythontest
pytest Primary Power Course Is Ready
Everything you need to get started with pytest and use it effectively.
Learn about:
Test Functions Structure functions effectively Fixtures setup, teardown, and so much more Builtin Fixtures many common testing tasks are pre-built and ready to use…
Learn about:
Test Functions Structure functions effectively Fixtures setup, teardown, and so much more Builtin Fixtures many common testing tasks are pre-built and ready to use…
Stack Abuse: Why does Python Code Run Faster in a Function?
Link: https://stackabuse.com/why-does-python-code-run-faster-in-a-function/
Introduction
Python is not necessarily known for its speed, but there are certain things that can help you squeeze out a bit more performance from your code. Surprisingly, one of these practices is ru
Link: https://stackabuse.com/why-does-python-code-run-faster-in-a-function/
Introduction
Python is not necessarily known for its speed, but there are certain things that can help you squeeze out a bit more performance from your code. Surprisingly, one of these practices is ru
Stack Abuse
Why does Python Code Run Faster in a Function?
Python is not necessarily known for its speed, but there are certain things that can help you squeeze out a bit more performance from your code. Surprisingly,...
Malthe Borch: Switching to managed encryption keys
Link: https://maltheborch.com/2023/09/switching-to-managed-encryption-keys.html
In most systems I come across, private keys are all over the place, made available as secrets to the workloads that need them. The trouble is not just that sometimes, secrets are not really secre
Link: https://maltheborch.com/2023/09/switching-to-managed-encryption-keys.html
In most systems I come across, private keys are all over the place, made available as secrets to the workloads that need them. The trouble is not just that sometimes, secrets are not really secre
Malthe's Homepage:
Software Engineering and Architecture, Data Processing and Analytics
A Blog About Computer Systems
Software Engineering and Architecture, Data Processing and Analytics
A Blog About Computer Systems
Switching to managed encryption keys
PyCoder’s Weekly: Issue #594 (Sept. 12, 2023)
Link: https://pycoders.com/issues/594
#594 – SEPTEMBER 12, 2023 View in Browser » Playing With Genetic Algorithms in Python A Genetic Algorithm (GA) is an AI technique where random code is mutated and tested for fitness iteratively
Link: https://pycoders.com/issues/594
#594 – SEPTEMBER 12, 2023 View in Browser » Playing With Genetic Algorithms in Python A Genetic Algorithm (GA) is an AI technique where random code is mutated and tested for fitness iteratively
Pycoders
PyCoder’s Weekly | Issue #594
Issue #594 of the PyCoder’s Weekly newsletter, published Sept. 12, 2023.
Robin Wilson: Pandas-FSDR: a simple function for finding significant differences in pandas DataFrames
Link: https://blog.rtwilson.com/pandas-fsdr-a-simple-function-for-finding-significant-differences-in-pandas-dataframes/
In the spirit of my Previously Unpublicised Code series, today I’m going to share Pandas-FSDR. This is a simple library with one function which finds significant differences between two columns in a p
Link: https://blog.rtwilson.com/pandas-fsdr-a-simple-function-for-finding-significant-differences-in-pandas-dataframes/
In the spirit of my Previously Unpublicised Code series, today I’m going to share Pandas-FSDR. This is a simple library with one function which finds significant differences between two columns in a p
Python Bytes: #352 Helicopter Time Comes to Python
Link: https://pythonbytes.fm/episodes/show/352/helicopter-time-comes-to-python
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://pypi.org/project/heliclockter/"><strong>Heliclockter</strong></a> - Like datetime, but more timezone-aware</li>
<li><a
Link: https://pythonbytes.fm/episodes/show/352/helicopter-time-comes-to-python
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://pypi.org/project/heliclockter/"><strong>Heliclockter</strong></a> - Like datetime, but more timezone-aware</li>
<li><a
pythonbytes.fm
Helicopter Time Comes to Python
News and announcements from the Python community for the week of Sep 12th, 2023
PyBites: Debunking 7 Myths About Software Development Coaching
Link: https://pybit.es/articles/debunking-7-myths-about-software-development-coaching/
If you give a man a fish, you feed him for a day. If you teach a man to fish, you feed him for a lifetime.
Chinese proverb
Transformative power of guidance
10 years ago I was overweight, maybe not mo
Link: https://pybit.es/articles/debunking-7-myths-about-software-development-coaching/
If you give a man a fish, you feed him for a day. If you teach a man to fish, you feed him for a lifetime.
Chinese proverb
Transformative power of guidance
10 years ago I was overweight, maybe not mo
Pybites
Debunking 7 Myths About Software Development Coaching - Pybites
The difference between THEN "assuming I was doing things ok-ish" yet getting bad results, and NOW, maintaining a lean physique quite effortlessly, not having
Stack Abuse: How to List Installed Python Modules
Link: https://stackabuse.com/how-to-list-installed-python-modules/
Introduction
Python, somewhat similar ot Node, uses a system of installed modules/packages. But as you continue to install more and more modules, it might get a bit tricky to keep track of all of them
Link: https://stackabuse.com/how-to-list-installed-python-modules/
Introduction
Python, somewhat similar ot Node, uses a system of installed modules/packages. But as you continue to install more and more modules, it might get a bit tricky to keep track of all of them
Real Python: Bypassing the GIL for Parallel Processing in Python
Link: https://realpython.com/python-parallel-processing/
Unlocking Python’s true potential in terms of speed through shared-memory parallelism has traditionally been limited and challenging to achieve. That’s because the global interpreter lock (GIL) doesn’
Link: https://realpython.com/python-parallel-processing/
Unlocking Python’s true potential in terms of speed through shared-memory parallelism has traditionally been limited and challenging to achieve. That’s because the global interpreter lock (GIL) doesn’
Realpython
Bypassing the GIL for Parallel Processing in Python – Real Python
In this tutorial, you'll take a deep dive into parallel processing in Python. You'll learn about a few traditional and several novel ways of sidestepping the global interpreter lock (GIL) to achieve genuine shared-memory parallelism of your CPU-bound tasks.
Stack Abuse: Opening Multiple Files Using 'with open' in Python
Link: https://stackabuse.com/opening-multiple-files-using-with-open-in-python/
Introduction
Python provides some very convenient ways to work with file-like objects, including the with feature. But what if we need to open multiple files in this way? Your could wouldn't exactly b
Link: https://stackabuse.com/opening-multiple-files-using-with-open-in-python/
Introduction
Python provides some very convenient ways to work with file-like objects, including the with feature. But what if we need to open multiple files in this way? Your could wouldn't exactly b
Stack Abuse
Opening Multiple Files Using 'with open' in Python
Python provides some very convenient ways to work with file-like objects, including the with feature. But what if we need to open multiple files in this way? Y...
Python GUIs: PyQt vs. Tkinter — Which Should You Choose for Your Next GUI Project?
Link: https://www.pythonguis.com/faq/pyqt-vs-tkinter/
Graphical User Interfaces (GUIs) allow users to interact with software through intuitive and user-friendly graphical elements such as buttons, icons, text boxes, and windows. GUIs provide a simple way
Link: https://www.pythonguis.com/faq/pyqt-vs-tkinter/
Graphical User Interfaces (GUIs) allow users to interact with software through intuitive and user-friendly graphical elements such as buttons, icons, text boxes, and windows. GUIs provide a simple way
Python GUIs
PyQt vs. Tkinter: Which Should You Choose for Your Next Python GUI?
What Are the Major Differences Between these Popular Python GUI Libraries. Graphical User Interfaces (GUIs) allow users to interact with software through intuitive and user-friendly graphical elements such as buttons, icons, text boxes, and windows.
Python GUIs: Input Validation in Tkinter GUI Apps
Link: https://www.pythonguis.com/tutorials/input-validation-tkinter/
When writing GUI applications you often need to accept data from users. A reliable application must verify and validate all its input data before taking any further action or doing any processing. Inp
Link: https://www.pythonguis.com/tutorials/input-validation-tkinter/
When writing GUI applications you often need to accept data from users. A reliable application must verify and validate all its input data before taking any further action or doing any processing. Inp
Python GUIs
Validate User Input When Creating Apps With Tkinter and Python
Validate User Input When Creating Apps With Tkinter and Python. When writing GUI applications you often need to accept data from users.
Python GUIs: PyQt6 Book now available in Korean: 파이썬과 Qt6로 GUI 애플리케이션 만들기
Link: https://www.pythonguis.com/blog/pyqt6-book-translated-korean/
I am very happy to announce that my Python GUI programming book
Create GUI Applications with Python & Qt6 / PyQt6 Edition is now available
in Korean from Acorn Publishing
It's more than a little mind-
Link: https://www.pythonguis.com/blog/pyqt6-book-translated-korean/
I am very happy to announce that my Python GUI programming book
Create GUI Applications with Python & Qt6 / PyQt6 Edition is now available
in Korean from Acorn Publishing
It's more than a little mind-
Python GUIs
PyQt6 Book: 파이썬과 Qt6로 GUI 애플리케이션 만들기
The hands-on guide to creating GUI applications with Python gets a new translation. I am very happy to announce that my Python GUI programming book Create GUI Applications with Python & Qt6 / PyQt6 Edition is now available in Korean from <a href=
Python GUIs: Getting Started With Kivy for GUI Development
Link: https://www.pythonguis.com/tutorials/getting-started-kivy/
Kivy is an open-source Python software library for developing graphical user interfaces. It supports cross-platform development for the desktop as well as the creation of multi-touch apps for mobile d
Link: https://www.pythonguis.com/tutorials/getting-started-kivy/
Kivy is an open-source Python software library for developing graphical user interfaces. It supports cross-platform development for the desktop as well as the creation of multi-touch apps for mobile d
Python GUIs
First Steps With the Kivy Library for GUI Development
Kivy is an open-source library for developing graphical user interfaces (GUI). It supports cross-platform development for the desktop as well as the creation of multi-touch apps for mobile devices. In this article, you'll learn about using Kivy to develop…
Python GUIs: Customizing Your Tkinter App's Windows
Link: https://www.pythonguis.com/tutorials/customized-windows-tkinter/
Different desktop applications have different design requirements. If you look at the applications on your computer, you will see that most of them have different window designs. Some applications, li
Link: https://www.pythonguis.com/tutorials/customized-windows-tkinter/
Different desktop applications have different design requirements. If you look at the applications on your computer, you will see that most of them have different window designs. Some applications, li
Python GUIs
Customizing Your Tkinter App Windows with Properties and Settings
In this tutorial, you'll learn how to tweak and customize windows and forms in your Tkinter apps. Different desktop applications have different design requirements.
Python People: Mariatta Wijaya
Link: https://pythonpeople.fm/episodes/mariatta-wijaya
Mariatta has been a contributor to Python for many years and is a very inspiring public speaker.Some of what we talk about:
Python Documentation Working Group
GitHub bots, There's an API for that
PyL
Link: https://pythonpeople.fm/episodes/mariatta-wijaya
Mariatta has been a contributor to Python for many years and is a very inspiring public speaker.Some of what we talk about:
Python Documentation Working Group
GitHub bots, There's an API for that
PyL
Python People
Python People | Mariatta Wijaya - Python Documentation, PyLadies, Keeping Fish, Public Speaking
The Python community is awesome because of the people. Python People is a weekly podcast about getting to know the people who help make the Python community great.
It's less about the tech, and more about the people.
It's less about the tech, and more about the people.
Janusworx: derb; Script to Create podcast RSS feeds
Link: https://janusworx.com/blog/derb/
I wrote a tiny script that creates an RSS feed for all the audio files it finds in a folder.
I call it derb.
My mother gets devotional songs and sermons on cds, which I rip to MP3 files and then dump
Link: https://janusworx.com/blog/derb/
I wrote a tiny script that creates an RSS feed for all the audio files it finds in a folder.
I call it derb.
My mother gets devotional songs and sermons on cds, which I rip to MP3 files and then dump
Janusworx
derb; Script to Create podcast RSS feeds
I wrote a tiny script that creates an RSS feed for all the audio files it finds in a folder.
I call it derb.
My mother gets devotional songs and sermons on cds, which I rip to MP3 files and then dump on her phone for her.1
She listens to them all the time…
I call it derb.
My mother gets devotional songs and sermons on cds, which I rip to MP3 files and then dump on her phone for her.1
She listens to them all the time…
Stack Abuse: Creating a Zip Archive of a Directory in Python
Link: https://stackabuse.com/creating-a-zip-archive-of-a-directory-in-python/
Introduction
When dealing with large amounts of data or files, you might find yourself needing to compress files into a more manageable format. One of the best ways to do this is by creating a zip arc
Link: https://stackabuse.com/creating-a-zip-archive-of-a-directory-in-python/
Introduction
When dealing with large amounts of data or files, you might find yourself needing to compress files into a more manageable format. One of the best ways to do this is by creating a zip arc
Stack Abuse
Creating a Zip Archive of a Directory in Python
When dealing with large amounts of data or files, you might find yourself needing to compress files into a more manageable format. One of the best ways to do t...
Python Software Foundation: Announcing Python Software Foundation Fellow Members for Q2 2023! 🎉
Link: https://pyfound.blogspot.com/2023/09/announcing-python-software-foundation.html
The PSF is pleased to announce its second batch of PSF Fellows for 2023! Let us welcome the new PSF Fellows for Q2! The following people continue to do amazing things for the Python community:Esteban
Link: https://pyfound.blogspot.com/2023/09/announcing-python-software-foundation.html
The PSF is pleased to announce its second batch of PSF Fellows for 2023! Let us welcome the new PSF Fellows for Q2! The following people continue to do amazing things for the Python community:Esteban
Python Software Foundation Blog
Announcing Python Software Foundation Fellow Members for Q2 2023! 🎉
The PSF is pleased to announce its second batch of PSF Fellows for 2023! Let us welcome the new PSF Fellows for Q2! The following people con...
Stack Abuse: How to Disable Warnings in Python
Link: https://stackabuse.com/how-to-disable-warnings-in-python/
Introduction
Working with any language, you've probably come across warnings - and lots of them. In Python, our warnings are the yellow-highlighted messages that appear when code runs. These warnings
Link: https://stackabuse.com/how-to-disable-warnings-in-python/
Introduction
Working with any language, you've probably come across warnings - and lots of them. In Python, our warnings are the yellow-highlighted messages that appear when code runs. These warnings