Trey Hunner: Switching from virtualenvwrapper to direnv, Starship, and uv
Earlier this week I considered whether I should finally switch away from virtualenvwrapper to using local .venv managed by direnv.I’ve never seriously used direnv, but I’ve been hearing Jeff and Hynek...
View ArticleSeth Michael Larson: EuroPython 2024 talks about security
EuroPython 2024 talks about security About• Blog• Newsletter• LinksEuroPython 2024 talks about securityPublished 2024-10-04 by Seth Larson Reading time: minutes EuroPython 2024 which occurred back in...
View ArticleReal Python: Quiz: Python import: Advanced Techniques and Tips
In this quiz, you’ll test your understanding of Python’s import statement and related topics.By working through this quiz, you’ll revisit how to use modules in your scripts and import modules...
View ArticlePython Engineering at Microsoft: Python in Visual Studio Code – October 2024...
We’re excited to announce the October 2024 release of the Python and Jupyter extensions for Visual Studio Code!This release includes the following announcements:Run Python tests with coverageDefault...
View ArticleJulien Tayon: PySimpleGUI : surviving the rug pull of licence part I
I liked pySimpleGUI, because as a coder that likes tkinter (the Tk/Tcl bindings) and as a former tcl/tk coder I enoyed the syntaxic sugar that was avoiding all the boiler plates required to build the...
View ArticleJulien Tayon: Simpler than PySimpleGUI and python tkinter: talking directly...
Well, the PySimpleGUI pull rug of licence reminded me how much dependencies are not a good thing. Even though FreeSimpleGUI is a good approach to simpler tk/tcl binding in python : we can do better,...
View ArticleChris Rose: uv, direnv, and simple .envrc files
I have adopted uv for a lot of Python development. I'm also a heavy user of direnv, which I like as a tool for setting up project-specific environments. Much like Hynek describes, I've found uv sync to...
View ArticleReal Python: Quiz: Iterators and Iterables in Python: Run Efficient Iterations
In this quiz, you’ll test your understanding of Python’s Iterators and Iterables.By working through this quiz, you’ll revisit how to create and work with iterators and iterables, understand the...
View ArticleJulien Tayon: Bidirectionnal python/tk by talking to tk interpreter back and...
Last time I exposed an old way learned in physical labs to do C or python/tk like in the old days: by summoning a tcl/tk interpreter and piping commands to it. But what fun is it? It's funnier if the...
View ArticleTalk Python to Me: #479: Designing Effective Load Tests for Your Python App
You're about to launch your new app or API, or even just a big refactor of your current project. Will it stand up and deliver when you put it into production or when that big promotion goes live? Or...
View ArticleMariatta: Python Core Sprint 2024: Day 5
Python Core Sprint 2024: Day 5Datetime and HypothesisI reviewed some issues that came to the CPython repo. There were a few interesting tickets related to the datetime module. These issues were...
View ArticleZato Blog: API Testing in Pure English
API Testing in Pure English 2024-10-07, by Dariusz Suchojad How to test APIs in pure EnglishDo you have 20 minutes to learn how to test APIs in pure English, without any programming needed?Great, the...
View ArticleJulien Tayon: Writing an interactive tcl/tk interpreter proxy to wish in python
Maybe, you want to experiment small stuffs in wish (the tcl/tk) interpreter because of a post claiming that direct python tcl/tk is simpler in some simple cases than tkinter. As a convinced...
View ArticleReal Python: Python News Roundup: October 2024
October is always an important month for Python, as this is when a new major version is released. Python 3.13 is the new version this year, and it brings several new features that lay the groundwork...
View ArticlePython Bytes: #404 The Lost Episode
<strong>Topics covered in this episode:</strong><br> <ul> <li><strong><a...
View ArticlePython Insider: Python 3.13.0 (final) released
Python 3.13.0 is now availablehttps://www.python.org/downloads/release/python-3130/This is the stable release of Python 3.13.0Python 3.13.0 is the newest major release of the Python programming...
View ArticlePython Morsels: Python 3.13's best new features
Python 3.13 comes with a brand new REPL and improvements to virtual environments and the Python debugger.Table of contentsImportant but not my favoriteThe New Python REPLGit-friendly virtual...
View ArticlePython Anywhere: Serving UTF-8 static files? Headers to the rescue (an epic...
Imagine there’s a PythonAnywhere user, homer8bc, with poetic inclinations. He wants to serve his newest poem (he believes it’s quite epic) as a static text page. He’s old school — he doesn’t believe in...
View ArticlePython Software Foundation: Join the Python Developers Survey 2024: Share...
This year we are conducting the eighth iteration of the official Python Developers Survey. The goal is to capture the current state of the language and the ecosystem around it. By comparing the results...
View ArticleDjango Weblog: Django bugfix release issued: 5.1.2
Today we've issued the 5.1.2 bugfix release.The release package and checksums are available from our downloads page, as well as from the Python Package Index. The PGP key ID used for this release is...
View Article