Securing Python and Open Source Ecosystems
https://www.activestate.com/resources/webinars/securing-pypi-open-source-ecosystems/?utm_source=pycoders-weekly&utm_medium=email&utm_content=24-04-23-feature-newsletter-pypi-webinar&utm_campaign=pypi-publishing
https://www.activestate.com/resources/webinars/securing-pypi-open-source-ecosystems/?utm_source=pycoders-weekly&utm_medium=email&utm_content=24-04-23-feature-newsletter-pypi-webinar&utm_campaign=pypi-publishing
ActiveState
Securing Python and Open Source Ecosystems | ActiveState
Dustin Ingram, Fellow at the Python Software Foundation (PSF), joins us to discuss trust and security for PyPI and other repositories in light of recent supply chain attacks, and steps being taken to secure the open source ecosystem.
OpenStreetMaps, Overpass API and Python
https://pybit.es/articles/openstreetmaps-overpass-api-and-python/
https://pybit.es/articles/openstreetmaps-overpass-api-and-python/
Pybites
OpenStreetMap, Overpass API And Python - Pybites
OpenStreetMap (OSM) is known for being an open source project that allows people to browse the world map and to plan routes. However it is more than that.
Python Gotcha: strip Can Remove More Than Expected
https://andrewwegner.com/python-gotcha-strip-functions-unexpected-behavior.html
https://andrewwegner.com/python-gotcha-strip-functions-unexpected-behavior.html
Ponderings of an Andy
Python Gotcha: strip, lstrip, rstrip can remove more than expected
The Python strip, lstrip, and rstrip functions can have unexpected behavior. Even though this is documented, non-default values passed to these functions can lead to unexpected results and how Python 3.9 solved this with two new functions.
Announcing py2wasm: A Python to Wasm Compiler
https://wasmer.io/posts/py2wasm-a-python-to-wasm-compiler
https://wasmer.io/posts/py2wasm-a-python-to-wasm-compiler
wasmer.io
Announcing py2wasm: A Python to Wasm compiler · Blog · Wasmer
Since starting Wasmer five years ago we've been obsessed with empowering more languages to target the web and beyond through Webassembly.
One of the ...
One of the ...
How to Format Floats Within F-Strings in Python
https://realpython.com/how-to-python-f-string-format-float/
https://realpython.com/how-to-python-f-string-format-float/
Realpython
How to Format Floats Within F-Strings in Python – Real Python
In this tutorial, you'll learn how to use Python format specifiers within an f-string to allow you to neatly format a float to your required precision.
The Time Complexities Python Data Structures in Python
https://www.pythonmorsels.com/time-complexities/
https://www.pythonmorsels.com/time-complexities/
Pythonmorsels
Python Big O: the time complexities of different data structures in Python
The time complexity of common operations on Python's many data structures.