Creating the Perfect Python Dockerfile
Increase your python code performance and security without changing the project source code.
https://luis-sena.medium.com/creating-the-perfect-python-dockerfile-51bdec41f1c8
Increase your python code performance and security without changing the project source code.
https://luis-sena.medium.com/creating-the-perfect-python-dockerfile-51bdec41f1c8
Medium
Creating the Perfect Python Dockerfile
Increase your python code performance and security without changing the project source code.
Python Language Summit: PEP 654 β Exception Groups and Except
https://pyfound.blogspot.com/2021/05/the-2021-python-language-summit-pep-654.html
https://pyfound.blogspot.com/2021/05/the-2021-python-language-summit-pep-654.html
Blogspot
The 2021 Python Language Summit: PEP 654 β Exception Groups and except*
PEP 654 was authored by Irit Katriel, Yury Selivanov, and Guido van Rossum. This PEP is currently at the draft stage. At the 2021 Python La...
Python programming: We want to make the language twice as fast, says its creator
https://www.zdnet.com/article/python-programming-we-want-to-make-the-language-twice-as-fast-says-its-creator/
https://www.zdnet.com/article/python-programming-we-want-to-make-the-language-twice-as-fast-says-its-creator/
ZDNet
Python programming: We want to make the language twice as fast, says its creator
But can it be done without breaking anyone's Python code and will it actually happen?
Automating all the Things with Home Assistant's Paulus Schoutsen
Home Assistant allows you to control all your devices without storing any of your data in the cloud. The project was started as a Python application by Paulus Schoutsen in September 2013 and has turned into a massively popular series of projects that span hundreds of devices! Plus, they like to keep your privacy private!
https://hanselminutes.simplecast.com/episodes/automating-all-the-things-with-home-assistants-paulus-schoutsen-0MQNgEvV
Home Assistant allows you to control all your devices without storing any of your data in the cloud. The project was started as a Python application by Paulus Schoutsen in September 2013 and has turned into a massively popular series of projects that span hundreds of devices! Plus, they like to keep your privacy private!
https://hanselminutes.simplecast.com/episodes/automating-all-the-things-with-home-assistants-paulus-schoutsen-0MQNgEvV
Portable Python 3.9.5 for Windows (USB key, ext. drive) for schools/companies
https://www.portabledevapps.net/
https://www.portabledevapps.net/
www.portabledevapps.net
Portable Dev Apps | Portable Applications for Developers
Portable versions of development tools (Python, PHP, R, Ruby, Julia, Latex...) for schools, work, home...
Reviews
A terminal UI Dashboard for monitoring requests for code review across several Github repositories and pull requests.
https://github.com/apoclyps/reviews
A terminal UI Dashboard for monitoring requests for code review across several Github repositories and pull requests.
https://github.com/apoclyps/reviews
GitHub
GitHub - apoclyps/reviews: A terminal UI dashboard to monitor requests for code review across Github and Gitlab repositories.
A terminal UI dashboard to monitor requests for code review across Github and Gitlab repositories. - GitHub - apoclyps/reviews: A terminal UI dashboard to monitor requests for code review across Gi...
ethereum / web3.py
A python interface for interacting with the Ethereum blockchain and ecosystem.
https://github.com/ethereum/web3.py
A python interface for interacting with the Ethereum blockchain and ecosystem.
https://github.com/ethereum/web3.py
GitHub
GitHub - ethereum/web3.py: A python interface for interacting with the Ethereum blockchain and ecosystem.
A python interface for interacting with the Ethereum blockchain and ecosystem. - ethereum/web3.py
ml-tooling / opyrator
πͺ Turns your machine learning code into microservices with web API, interactive GUI, and more.
https://github.com/ml-tooling/opyrator
πͺ Turns your machine learning code into microservices with web API, interactive GUI, and more.
https://github.com/ml-tooling/opyrator
GitHub
GitHub - ml-tooling/opyrator: πͺ Turns your machine learning code into microservices with web API, interactive GUI, and more.
πͺ Turns your machine learning code into microservices with web API, interactive GUI, and more. - ml-tooling/opyrator
How to manage Python environments
This is from my Python working session on managing Python environments. I
think this is helpful ...
https://ljvmiranda921.github.io/notebook/2021/05/12/how-to-manage-python-envs/
This is from my Python working session on managing Python environments. I
think this is helpful ...
https://ljvmiranda921.github.io/notebook/2021/05/12/how-to-manage-python-envs/
ljvmiranda921.github.io
How to manage Python environments
Here is an excerpt from a Python working session that I led about managing Python environments using virtualenv, make, and pip-tools. Found it a bit useful s...
Building Finite State Machines with Python Coroutines
The most intuitive way of building and implementing Finite State Machines is by using Python ...
https://arpitbhayani.me/blogs/fsm
The most intuitive way of building and implementing Finite State Machines is by using Python ...
https://arpitbhayani.me/blogs/fsm
arpitbhayani.me
Building Finite State Machines with Python Coroutines
The most intuitive way of building and implementing Finite State Machines is by using Python Coroutines and in this article, we find how and why.
The tools and tech I use to run a one-woman hardware company
A look into the tech and tools used by Winterbloom.
https://blog.thea.codes/winterblooms-tech-stack/
A look into the tech and tools used by Winterbloom.
https://blog.thea.codes/winterblooms-tech-stack/
blog.thea.codes
The tools and tech I use to run a one-woman hardware company - Thea Flowers
A look into the tech and tools used by Winterbloom
Dynamically Update Your Flask Web Pages Using Turbo-Flask
How can you update a part of a web page dynamically, without the user having to hit the refresh ...
http://blog.miguelgrinberg.com/post/dynamically-update-your-flask-web-pages-using-turbo-flask
How can you update a part of a web page dynamically, without the user having to hit the refresh ...
http://blog.miguelgrinberg.com/post/dynamically-update-your-flask-web-pages-using-turbo-flask
Miguelgrinberg
Dynamically Update Your Flask Web Pages Using Turbo-Flask
How can you update a part of a web page dynamically, without the user having to hit the refresh button on the browser?This is a question that is frequently asked on the Internet. If you have someβ¦
Making Python Integers Iterable
In Python, Integers are not iterables but we can make them iterable by implementing iter ...
https://arpitbhayani.me/blogs/python-iterable-integers
In Python, Integers are not iterables but we can make them iterable by implementing iter ...
https://arpitbhayani.me/blogs/python-iterable-integers
Arpit Bhayani
Can we iterate on a Python integer?
In Python, Integers are not iterables but we can make them iterable by implementing __iter__ function. In this essay, we change Python's source code and implement iter function for integers.