Kushal Das: Thank you Gnome Nautilus scripts
Link: https://kushaldas.in/posts/thank-you-gnome-nautilus-scripts.html
As I upload photos to various services, I generally resize them as required
based on portrait or landscape mode. I used to do that for all the photos in a
directory and then pick which ones to use. B
Link: https://kushaldas.in/posts/thank-you-gnome-nautilus-scripts.html
As I upload photos to various services, I generally resize them as required
based on portrait or landscape mode. I used to do that for all the photos in a
directory and then pick which ones to use. B
Real Python: A Guide to Modern Python String Formatting Tools
Link: https://realpython.com/python-formatted-output/
When working with strings in Python, you may need to interpolate values into your string and format these values to create new strings dynamically. In modern Python, you have f-strings and the .format
Link: https://realpython.com/python-formatted-output/
When working with strings in Python, you may need to interpolate values into your string and format these values to create new strings dynamically. In modern Python, you have f-strings and the .format
Realpython
A Guide to Modern Python String Formatting Tools – Real Python
In this tutorial, you'll explore Python's modern string formatting tools. You'll learn how to harness the power of Python's f-strings and the .format() method for string interpolation and formatting.
scikit-learn
Link: https://blog.scikit-learn.org/2024-09-02-survey-announcement/
We are excited to announce the launch of the scikit-learn user survey! Scikit-learn
continues to evolve thanks to contributions from its diverse user community. As we
plan for future releases, we wan
Link: https://blog.scikit-learn.org/2024-09-02-survey-announcement/
We are excited to announce the launch of the scikit-learn user survey! Scikit-learn
continues to evolve thanks to contributions from its diverse user community. As we
plan for future releases, we wan
Real Python: Quiz: When to Use a List Comprehension in Python
Link: https://realpython.com/quizzes/list-comprehension-python/
In this quiz, you’ll test your understanding of
List Comprehension in Python.
By working through this quiz, you’ll revisit how to rewrite loops as list comprehensions,
how to choose when to use list c
Link: https://realpython.com/quizzes/list-comprehension-python/
In this quiz, you’ll test your understanding of
List Comprehension in Python.
By working through this quiz, you’ll revisit how to rewrite loops as list comprehensions,
how to choose when to use list c
Realpython
When to Use a List Comprehension in Python Quiz – Real Python
In this quiz, you'll test your understanding of Python list comprehensions. You'll revisit how to rewrite loops as list comprehensions, how to choose between comprehensions and loops, and how to use conditional logic in your comprehensions.
Trey Hunner: Switching from virtualenvwrapper to direnv, Starship, and uv
Link: https://treyhunner.com/2024/10/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 Hyne
Link: https://treyhunner.com/2024/10/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 Hyne
Treyhunner
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 …
Seth Michael Larson: EuroPython 2024 talks about security
Link: https://sethmlarson.dev/europython-2024-security-talks?utm_campaign=rss
EuroPython 2024 talks about security
Link: https://sethmlarson.dev/europython-2024-security-talks?utm_campaign=rss
EuroPython 2024 talks about security
sethmlarson.dev
EuroPython 2024 talks about security
EuroPython 2024 which occurred back in July 2024
has published the talk recordings to YouTube earlier this week.
I've been under the weather for most of this week, but have had a chance to
listen t...
has published the talk recordings to YouTube earlier this week.
I've been under the weather for most of this week, but have had a chance to
listen t...
Real Python: Quiz: Python import: Advanced Techniques and Tips
Link: https://realpython.com/quizzes/python-import/
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 dynamic
Link: https://realpython.com/quizzes/python-import/
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 dynamic
Realpython
Python import: Advanced Techniques and Tips Quiz – Real Python
In this quiz, you'll test your understanding of Python's import statement and how it works. You'll revisit your understanding of how to use modules and how to import modules dynamically at runtime.
Python Engineering at Microsoft: Python in Visual Studio Code – October 2024 Release
Link: https://devblogs.microsoft.com/python/python-in-visual-studio-code-october-2024-release/
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 coverage
Defau
Link: https://devblogs.microsoft.com/python/python-in-visual-studio-code-october-2024-release/
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 coverage
Defau
Microsoft News
Python in Visual Studio Code – October 2024 Release
The October 2024 release of the Python and Jupyter extensions for Visual Studio Code are now available. This month's updates include Python test coverage support and a default Python problem matcher. Keep reading to learn more!
Julien Tayon: PySimpleGUI : surviving the rug pull of licence part I
Link: http://beauty-of-imagination.blogspot.com/2024/09/pysimplegui-surviving-rug-pull-of.html
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
Link: http://beauty-of-imagination.blogspot.com/2024/09/pysimplegui-surviving-rug-pull-of.html
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
Blogspot
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 t...
Julien Tayon: Simpler than PySimpleGUI and python tkinter: talking directly to tcl/tk
Link: http://beauty-of-imagination.blogspot.com/2024/10/simpler-than-pysimplegui-and-python.html
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,
Link: http://beauty-of-imagination.blogspot.com/2024/10/simpler-than-pysimplegui-and-python.html
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,
Blogspot
Simpler than PySimpleGUI and python tkinter: talking directly to tcl/tk
Well, the PySimpleGUI pull rug of licence reminded me how much dependencies are not a good thing. Even though FreeSimpleGUI is a good app...
Chris Rose: uv, direnv, and simple .envrc files
Link: https://offby1.website/posts/uv-direnv-and-simple-envrc-files.html
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
Link: https://offby1.website/posts/uv-direnv-and-simple-envrc-files.html
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
Ideas.Offby1
uv, direnv, and simple .envrc files
Easily using uv, direnv, and minimal, consistent .envrc files
Real Python: Quiz: Iterators and Iterables in Python: Run Efficient Iterations
Link: https://realpython.com/quizzes/python-iterators-iterables/
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 diffe
Link: https://realpython.com/quizzes/python-iterators-iterables/
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 diffe
Realpython
Iterators and Iterables in Python: Run Efficient Iterations Quiz – Real Python
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, the differences between them, and review how to use generator functions.
Julien Tayon: Bidirectionnal python/tk by talking to tk interpreter back and forth
Link: http://beauty-of-imagination.blogspot.com/2024/10/bidirectionnal-pythontk-by-talking-to.html
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
Link: http://beauty-of-imagination.blogspot.com/2024/10/bidirectionnal-pythontk-by-talking-to.html
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
Blogspot
Bidirectionnal python/tk by talking to tk interpreter back and forth
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 pi...
Talk Python to Me: #479: Designing Effective Load Tests for Your Python App
Link: https://talkpython.fm/episodes/show/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 w
Link: https://talkpython.fm/episodes/show/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 w
talkpython.fm
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 will it wither and collapse? How would you know? Well you…
Mariatta: Python Core Sprint 2024: Day 5
Link: https://mariatta.ca/posts/python-core-sprint-2024-day-5/
Python Core Sprint 2024: Day 5
Datetime and Hypothesis
I reviewed some issues that came to the CPython repo. There were a few interesting tickets related to the datetime
module. These issues were disc
Link: https://mariatta.ca/posts/python-core-sprint-2024-day-5/
Python Core Sprint 2024: Day 5
Datetime and Hypothesis
I reviewed some issues that came to the CPython repo. There were a few interesting tickets related to the datetime
module. These issues were disc
Mariatta
Python Core Sprint 2024: Day 5
Python Core Sprint 2024: Day 5 Datetime and Hypothesis I reviewed some issues that came to the CPython repo. There were a few interesting tickets related to the datetime module. These issues were discovered by Hypothesis, a property-based testing tool for…
Zato Blog: API Testing in Pure English
Link: https://zato.io/en/blog/api-testing-in-pure-english.html
API Testing in Pure English
2024-10-07, by Dariusz Suchojad
How to test APIs in pure English
Do you have 20 minutes to learn how to test APIs in pure English, without any programming needed?
Gr
Link: https://zato.io/en/blog/api-testing-in-pure-english.html
API Testing in Pure English
2024-10-07, by Dariusz Suchojad
How to test APIs in pure English
Do you have 20 minutes to learn how to test APIs in pure English, without any programming needed?
Gr
Julien Tayon: Writing an interactive tcl/tk interpreter proxy to wish in python
Link: http://beauty-of-imagination.blogspot.com/2024/10/writing-interactive-tcltk-interpreter.html
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 tkinter/F
Link: http://beauty-of-imagination.blogspot.com/2024/10/writing-interactive-tcltk-interpreter.html
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 tkinter/F
Blogspot
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...
Real Python: Python News Roundup: October 2024
Link: https://realpython.com/python-news-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 f
Link: https://realpython.com/python-news-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 f
Realpython
Python News Roundup: October 2024 – Real Python
This month, Python 3.13 is being released. The new release brings exciting features like a new REPL and a version of Python without the global interpreter lock (GIL). In the community, DjangoCon US just wrapped up after a week of interesting tutorials and…
Python Bytes: #404 The Lost Episode
Link: https://pythonbytes.fm/episodes/show/404/the-lost-episode
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><strong><a href="https://www.python.org/downloads/release/python-3130/?featured_on=pythonbytes">Python 3.13.0 released Oct 7</a></strong
Link: https://pythonbytes.fm/episodes/show/404/the-lost-episode
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><strong><a href="https://www.python.org/downloads/release/python-3130/?featured_on=pythonbytes">Python 3.13.0 released Oct 7</a></strong
pythonbytes.fm
The Lost Episode
News and announcements from the Python community for the week of Oct 7th, 2024
Python Insider: Python 3.13.0 (final) released
Link: https://pythoninsider.blogspot.com/2024/10/python-3130-final-released.html
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 langu
Link: https://pythoninsider.blogspot.com/2024/10/python-3130-final-released.html
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 langu
Blogspot
Python Insider: Python 3.13.0 (final) released
Python Morsels: Python 3.13's best new features
Link: https://www.pythonmorsels.com/python-313-whats-new/
Python 3.13 comes with a brand new REPL and improvements to virtual environments and the Python debugger.
Table of contents
Important but not my favorite
The New Python REPL
Git-friendly virtual e
Link: https://www.pythonmorsels.com/python-313-whats-new/
Python 3.13 comes with a brand new REPL and improvements to virtual environments and the Python debugger.
Table of contents
Important but not my favorite
The New Python REPL
Git-friendly virtual e
Pythonmorsels
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.