Talk Python to Me: #369: Getting Lazy with Python Imports and PEP 690
Python is undergoing a performance renaissance. We already have Python 3.11 20-40% faster than even Python 3.10. On this episode, we'll dive into a new proposal to make Python even more efficient using...
View ArticleWingware: Wing Python IDE Version 8.3.2 - June 17, 2022
Wing 8.3.2 fixes several code intelligence issues for f-string expressions, avoids problems when using ~ or a non-default Base Directory with remote hosts, allows running a pytest parameterized test...
View ArticleEuroPython: The Humans of EuroPython: Naomi Ceder ✨
I’m Naomi Ceder, and I’ve been involved in Python communities since I first learned Python (at LinuxWorld in a tutorial given by Guido) in 2001. Over those years I’ve taught Python in schools, at...
View ArticleReal Python: The Real Python Podcast – Episode #114: Getting Started in...
Are you interested in a career in security using Python? Would you like to stay ahead of potential vulnerabilities in your Python applications? This week on the show, James Pleger talks about Python...
View ArticlePyCharm: PyCharm 2022.1.3 Release Candidate Is Available
The release candidate for PyCharm 2022.1.3 is ready for you to spot-check before we roll out the release.Important! If you have PyCharm 2022.1.2 already installed, you will need to update to PyCharm...
View ArticlePython for Beginners: Copy a List in Python
While programming in python, we sometimes need to store the same data in multiple places. This may be due to the fact that we need to preserve the original data. In this article, we will discuss...
View ArticleAnarcat: Matrix notes
I have some concerns about Matrix (the protocol, not the movie that came out recently, although I do have concerns about that as well). I've been watching the project for a long time, and it seems more...
View ArticlePyCharm: PyCharm 2022.2 EAP 3 Is Out!
A new PyCharm 2022.2 EAP 3 build is available from our website, via the Toolbox App, or as a snap package (if you are using Ubuntu). If you are on macOS, there is a separate build for Apple Silicon (M1...
View ArticleEveryday Superpowers: A prmier on password hashing
A short and quick explanation about why you need to hash passwords and how you do it.Read more...
View ArticlePyBites: Is it time to step back and look at the greater design?
**The official Pybites T-Shirt**This week we talk about an important topic: how to prevent yourself as a programmer from getting into tunnel vision when coding. We have a nice practical example we’ll...
View ArticlePyBites: What I have learned from an open-source project
What preceded itI like the Carbon images that appear on Twitter from Pybites. Out of curiosity, I took a look at the code on GitHub, but it was pretty overwhelming and intimidating, so I quickly moved...
View ArticleAndre Roberge: friendly_idle is done!
friendly_idle is done!I've found a better solution for the remaining issue I had mentioned in the previous blog post.I also found a fix for an "annoyance" mentioned by Raymond Hettinger on Twitter!I...
View ArticleKushal Das: Tor 0.4.7.8 is ready
Last night I built and pushed the Tor RPM(s) for 0.4.7.8. This is a security update, so please make sure that you upgrade your relays and bridges.You can know more about the Tor's RPM respository at...
View ArticlePython Software Foundation: The PSF Board Election is Open!
It’s time to cast your vote! Voting takes place from Monday, June 20 AoE, through Friday, June 30, 2022 AoE. Check here to see how much time you have left to vote. If you are a voting member of the...
View Article"Morphex's Blogologue": Some more easy sunday accounting hacks
I added some code to the ravencoin-taxman tool today:https://github.com/morphex/ravencoin-taxman/commit/55f47b67f...which enables the calculation of earnings in a local currency. So if you're mining...
View ArticlePython⇒Speed: Why new Macs break your Docker build, and how to fix it
One of the promises of Docker is reproducibility: you can build an image on a different machine, and assuming you’ve done the appropriate setup, get the same result. So it can be a little confusing...
View ArticleMike Driscoll: PyDev of the Week: Jürgen Gmach
This week we welcome Jürgen Gmach (@jugmac00) as our PyDev of the Week! Jürgen is a maintainer of the tox automation project. You can see what else Jürgen is up to over on his website. You can also...
View ArticlePython for Beginners: Read CSV Into a List of Lists in Python
We often need to process csv files to analyze data related to a business problem. In this article, we will discuss how we can read a csv file into a list of lists in python.Read CSV Into a List of...
View ArticleReal Python: How Can You Emulate Do-While Loops in Python?
If you came to Python from a language like C, C++, Java, or JavaScript, then you may be missing their do-while loop construct. A do-while loop is a common control flow statement that executes its code...
View Articledeath and gravity: The unreasonable effectiveness of f-strings and re.VERBOSE
... in which we look at one or two ways to make life easier when working with Python regular expressions.tl;dr: You can compose verbose regular expressions using f-strings.Here's a real-world example...
View Article