A Message From the PSF’s Outgoing Executive Director
https://pyfound.blogspot.com/2021/12/a-message-from-psfs-outgoing-executive.html
https://pyfound.blogspot.com/2021/12/a-message-from-psfs-outgoing-executive.html
Blogspot
A message from the PSF's outgoing Executive Director
Today is my last day at the PSF. It's been an honor and a pleasure serving the Python community for over a decade. It's a very bittersweet ...
Best Way to “Swap” Words (Multiple Characters) in a String?
https://stackoverflow.com/questions/70209111/python-best-way-to-swap-words-multiple-characters-in-a-string
https://stackoverflow.com/questions/70209111/python-best-way-to-swap-words-multiple-characters-in-a-string
Stack Overflow
Python best way to 'swap' words (multiple characters) in a string?
Consider the following examples:
string_now = 'apple and avocado'
stringthen = string_now.swap('apple', 'avocado') # stringthen = 'avocado and apple'
and:
string_now = 'fffffeeeeeddffee'
stringthe...
string_now = 'apple and avocado'
stringthen = string_now.swap('apple', 'avocado') # stringthen = 'avocado and apple'
and:
string_now = 'fffffeeeeeddffee'
stringthe...
Prettify Your Data Structures With Pretty Print in Python
https://realpython.com/python-pretty-print/
https://realpython.com/python-pretty-print/
Realpython
Prettify Your Data Structures With Pretty Print in Python – Real Python
The pprint module, Python's data pretty printer, is a useful part of the standard library. You can work with it for debugging data structures and increasing the readability of your output. In this tutorial, you'll find that pprint is both straightforward…
Discussing Type Hints, Protocols, and Ducks in Python With Luciano Ramalho
https://realpython.com/podcasts/rpp/88/
https://realpython.com/podcasts/rpp/88/
Realpython
Episode #88: Discussing Type Hints, Protocols, and Ducks in Python – The Real Python Podcast
There seem to be three kinds of Python developers: those unaware of type hints or have no opinion, ones that embrace them, and others who have an allergic reaction at the mention of them. Python is famously a dynamically typed language, but there are advantages…
How to Create a Computer Virus in Python
https://thepythoncorner.com/posts/2021-08-30-how-to-create-virus-python/
https://thepythoncorner.com/posts/2021-08-30-how-to-create-virus-python/
The Python Corner
How to create a computer virus in Python
I was relaxing on a beach during my summer leave when I received a mail from a reader that asked me if it is technically possible to write a virus using Python. The short answer: YES. The longer answer: yes, BUT… Let’s start by saying that viruses are a little…
Writing Simple Python GUIs for Your Command-Line-Phobe Coworkers
https://cushychicken.github.io/python-guis-for-heretics/
https://cushychicken.github.io/python-guis-for-heretics/
Wherein The Chicken
Writing Simple Python GUIs for your Command-Line-Phobe Coworkers
If you have a modicum of coding skill, you’ve probably found some crappy little office task that you can automate away with a judicious hundred lines of Python. This typically takes the form of simple command line applications to reformat files: read in …
emacs-python-coverage: Show Python Coverage Information Directly in Emacs
https://github.com/wbolster/emacs-python-coverage
https://github.com/wbolster/emacs-python-coverage
GitHub
GitHub - wbolster/emacs-python-coverage: show python coverage information directly in emacs
show python coverage information directly in emacs - wbolster/emacs-python-coverage
pip-audit: Audits Python Environments and Dependency Trees for Known Vulnerabilities
https://github.com/trailofbits/pip-audit
https://github.com/trailofbits/pip-audit
GitHub
GitHub - pypa/pip-audit: Audits Python environments, requirements files and dependency trees for known security vulnerabilities…
Audits Python environments, requirements files and dependency trees for known security vulnerabilities, and can automatically fix them - pypa/pip-audit
pkgversions: Update Python Package Versions During Development
https://github.com/hasii2011/pkgversions
https://github.com/hasii2011/pkgversions
GitHub
GitHub - hasii2011/pkgversions: Simple CLI for my development usage
Simple CLI for my development usage. Contribute to hasii2011/pkgversions development by creating an account on GitHub.
Dynamically Creating Signals and Deciding What Emails to Send from Django Admin
https://medium.com/@Salaah01/dynamically-creating-signals-and-deciding-what-emails-to-send-from-django-admin-f66849622cfb
https://medium.com/@Salaah01/dynamically-creating-signals-and-deciding-what-emails-to-send-from-django-admin-f66849622cfb
Medium
Dynamically Creating Signals and Deciding What Emails to Send from Django Admin
Enable admins to create email templates, set up signals and send emails whenever some data changes — right form the admin panel.