Streamline your Docker builds with Pants
Pants makes it easy and efficient to incrementally build and deploy multiple Docker images from a single repo, with a single command. Each image can consist of a shared base image plus a single PEX (Python EXecutable) file containing all the code, resources and dependencies required by the entry point. Pants knows exactly which images need to be rebuilt and redeployed given a set of Git changes.
https://blog.pantsbuild.org/pants-pex-and-docker/
Pants makes it easy and efficient to incrementally build and deploy multiple Docker images from a single repo, with a single command. Each image can consist of a shared base image plus a single PEX (Python EXecutable) file containing all the code, resources and dependencies required by the entry point. Pants knows exactly which images need to be rebuilt and redeployed given a set of Git changes.
https://blog.pantsbuild.org/pants-pex-and-docker/
Pantsbuild Open Source Community Blog
Streamline your Docker builds with Pants
> TL;DR Pants makes it easy and efficient to incrementally build and deploy
multiple Docker images from a single repo, with a single command. Each image can
consist of a shared base image plus a single PEX (Python EXecutable) file
containing all the code…
multiple Docker images from a single repo, with a single command. Each image can
consist of a shared base image plus a single PEX (Python EXecutable) file
containing all the code…
10 Things You Might Not Know About Wikipedia Library In Python
Fetching data is much simpler with a line of code using Wikipedia API!Continue reading on Towards ...
https://towardsdatascience.com/10-things-you-might-not-know-about-wikipedia-library-in-python-61af5d46037d
Fetching data is much simpler with a line of code using Wikipedia API!Continue reading on Towards ...
https://towardsdatascience.com/10-things-you-might-not-know-about-wikipedia-library-in-python-61af5d46037d
Medium
10 Things You Might Not Know About Wikipedia Library In Python
Fetching data is much simpler with a line of code using Wikipedia API!
Configuration is an API, not an SDK
Some guidelines for config management in general and for Python apps in particular.
https://hernantz.github.io/configuration-is-an-api-not-an-sdk.html
Some guidelines for config management in general and for Python apps in particular.
https://hernantz.github.io/configuration-is-an-api-not-an-sdk.html
hernantz.github.io
Configuration is an API, not an SDK | README.txt
A configuration architecture for the working dev.
SQLAlchemy 1.4 async ORM with FastAPI
This tutorial will present how to set up a production-ready application running on FastAPI, PostgreSQL, SQLAlchemy 1.4, and alembic. Everything using asyncio.
https://rogulski.it/blog/sqlalchemy-14-async-orm-with-fastapi/
This tutorial will present how to set up a production-ready application running on FastAPI, PostgreSQL, SQLAlchemy 1.4, and alembic. Everything using asyncio.
https://rogulski.it/blog/sqlalchemy-14-async-orm-with-fastapi/
rogulski.it
SqlAlchemy 1.4 async ORM with FastAPI | rogulski.it
Tutorial on how to build a service using async ORM and Python framework
Object Oriented Programming with Python - Full Course for Beginners
Object Oriented Programming is an important concept in software development. In this complete tutorial, you will learn all about OOP and how to implement it using Python.
https://www.youtube.com/watch?v=Ej_02ICOIgs
Object Oriented Programming is an important concept in software development. In this complete tutorial, you will learn all about OOP and how to implement it using Python.
https://www.youtube.com/watch?v=Ej_02ICOIgs
YouTube
Object Oriented Programming with Python - Full Course for Beginners
Object Oriented Programming is an important concept in software development. In this complete tutorial, you will learn all about OOP and how to implement it using Python.
💻 Code: https://github.com/jimdevops19/PythonOOP
🔗 Tutorial referenced for a deeper…
💻 Code: https://github.com/jimdevops19/PythonOOP
🔗 Tutorial referenced for a deeper…
Finding and reporting an asyncio bug in Python 3.10
I found a bug in Python 3.10. Some notes on how I found it and my process for handling it once I figured out what was going on.
https://simonwillison.net/2021/Oct/9/finding-and-reporting-a-bug/
I found a bug in Python 3.10. Some notes on how I found it and my process for handling it once I figured out what was going on.
https://simonwillison.net/2021/Oct/9/finding-and-reporting-a-bug/
simonwillison.net
Finding and reporting an asyncio bug in Python 3.10
I found a bug in Python 3.10 today! Some notes on how I found it and my process for handling it once I figured out what was going on. Testing …
Psycopg 3.0 released
Psycopg 3 is a complete rewrite based on the experience accumulated with the development and maintenance of psycopg2. Psycopg 3 targets all the current versions of Python (3.6-3.10) and PostgreSQL (10-14) and allows the use of modern Python development techniques, such as async and statically typed code.
https://www.psycopg.org/articles/2021/10/13/psycopg-30-released/
Psycopg 3 is a complete rewrite based on the experience accumulated with the development and maintenance of psycopg2. Psycopg 3 targets all the current versions of Python (3.6-3.10) and PostgreSQL (10-14) and allows the use of modern Python development techniques, such as async and statically typed code.
https://www.psycopg.org/articles/2021/10/13/psycopg-30-released/
www.psycopg.org
Psycopg 3.0 released — Psycopg
Python adapter for PostgreSQL
Guide To SQL And Its Equivalent Commands In Python
Quick but detailed cheat sheet for those who want to convert their SQL code to its equivalent ...
https://towardsdatascience.com/guide-to-sql-and-its-equivalent-commands-in-python-445e134adaba
Quick but detailed cheat sheet for those who want to convert their SQL code to its equivalent ...
https://towardsdatascience.com/guide-to-sql-and-its-equivalent-commands-in-python-445e134adaba
Medium
Guide To SQL And Its Equivalent Commands In Python
Quick but detailed cheat sheet for those who want to convert their SQL code to its equivalent command in Python!
Attempting REPL-Driven Development in Python
https://blog.avocadosh.xyz/repl-driven-development-in-python
https://blog.avocadosh.xyz/repl-driven-development-in-python
Internet of Things for libraries
This post is an introduction to the Internet of Things (IoT), and will cover the technical aspects of working with digital-sensors and how they could be used in a library setting.
https://willemjan.github.io/2021/10/07/iot-for-libraries.html
This post is an introduction to the Internet of Things (IoT), and will cover the technical aspects of working with digital-sensors and how they could be used in a library setting.
https://willemjan.github.io/2021/10/07/iot-for-libraries.html
willemjan.github.io
Internet of Things for libraries
To measure or not to measure that’s the question. Introduction This blog is an introduction to the Internet of Things (IoT), and will cover the technical aspects of working with digital-sensors and how they could be used in a library setting. I will work…
Tips for debugging with print()
If you’re embarrassed at debugging with print(), please don’t be - it’s perfectly fine! Many bugs are easily tackled with just a few checks in the right places. Here are five tips to get the most out of debugging with print().
https://adamj.eu/tech/2021/10/08/tips-for-debugging-with-print/
If you’re embarrassed at debugging with print(), please don’t be - it’s perfectly fine! Many bugs are easily tackled with just a few checks in the right places. Here are five tips to get the most out of debugging with print().
https://adamj.eu/tech/2021/10/08/tips-for-debugging-with-print/
adamj.eu
Tips for debugging with print() - Adam Johnson
If you’re embarrassed at debugging with print(), please don’t be - it’s perfectly fine! Many bugs are easily tackled with just a few checks in the right places. As much as I love using a debugger, I often reach for a print() statement first.
quickemu
Quickly create and run optimised Windows, macOS and Linux desktop virtual machines.
https://github.com/wimpysworld/quickemu
Quickly create and run optimised Windows, macOS and Linux desktop virtual machines.
https://github.com/wimpysworld/quickemu
GitHub
GitHub - quickemu-project/quickemu: Quickly create and run optimised Windows, macOS and Linux virtual machines
Quickly create and run optimised Windows, macOS and Linux virtual machines - quickemu-project/quickemu
Build Your First Mood-Based Music Recommendation System in Python
Audio-Based Recommendations From Scratch Using the Spotify APIContinue reading on Towards Data ...
https://towardsdatascience.com/build-your-first-mood-based-music-recommendation-system-in-python-26a427308d96
Audio-Based Recommendations From Scratch Using the Spotify APIContinue reading on Towards Data ...
https://towardsdatascience.com/build-your-first-mood-based-music-recommendation-system-in-python-26a427308d96
Python in Visual Studio Code – October 2021 Release
In this release we closed a total of 88 issues, and it includes:
https://devblogs.microsoft.com/python/python-in-visual-studio-code-october-2021-release/
In this release we closed a total of 88 issues, and it includes:
https://devblogs.microsoft.com/python/python-in-visual-studio-code-october-2021-release/
Python
Python in Visual Studio Code – October 2021 Release
We are pleased to announce that the October 2021 release of the Python Extension for Visual Studio Code is now available. This release introduces debugging support for Jupyter Notebooks, our new Python walkthrough and an improvement to the debugging experience…
13 ways to access data in Python
How to get data from local files, databases, APIs and data access libraries into your Python ...
https://towardsdatascience.com/13-ways-to-access-data-in-python-bac5683e0063
How to get data from local files, databases, APIs and data access libraries into your Python ...
https://towardsdatascience.com/13-ways-to-access-data-in-python-bac5683e0063
Medium
13 ways to access data in Python
How to get data from local files, databases, APIs and data access libraries into your Python environment