How to Generate Professional API Docs in Minutes from Docstrings
Producing high-quality API documentation can be made easy and intuitive. Supports Markdown and ...
https://towardsdatascience.com/how-to-generate-professional-api-docs-in-minutes-from-docstrings-aed0341bbda7
Producing high-quality API documentation can be made easy and intuitive. Supports Markdown and ...
https://towardsdatascience.com/how-to-generate-professional-api-docs-in-minutes-from-docstrings-aed0341bbda7
Python behind the scenes #13: the GIL and its effects on Python multithreading
As you probably know, the GIL stands for the Global Interpreter Lock, and its job is to make the ...
https://tenthousandmeters.com/blog/python-behind-the-scenes-13-the-gil-and-its-effects-on-python-multithreading/
As you probably know, the GIL stands for the Global Interpreter Lock, and its job is to make the ...
https://tenthousandmeters.com/blog/python-behind-the-scenes-13-the-gil-and-its-effects-on-python-multithreading/
Tenthousandmeters
Python behind the scenes #13: the GIL and its effects on Python multithreading
As you probably know, the GIL stands for the Global Interpreter Lock, and its job is to make the CPython interpreter thread-safe. The GIL allows...
Delegation: composition and inheritance in object-oriented programming
Introduction¶Object-oriented programming (OOP) is a methodology that was introduced in the 60s, ...
https://www.thedigitalcatonline.com/blog/2020/08/17/delegation-composition-and-inheritance-in-object-oriented-programming/
Introduction¶Object-oriented programming (OOP) is a methodology that was introduced in the 60s, ...
https://www.thedigitalcatonline.com/blog/2020/08/17/delegation-composition-and-inheritance-in-object-oriented-programming/
Thedigitalcatonline
Delegation: composition and inheritance in object-oriented programming
Introduction¶Object-oriented programming (OOP) is a methodology that was introduced in the 60s, though as for many other concepts related to programming languages it is difficult to give a proper date. While recent years have witnessed a second youth of functional…
tiangolo / sqlmodel
SQL databases in Python, designed for simplicity, compatibility, and robustness.
https://github.com/tiangolo/sqlmodel
SQL databases in Python, designed for simplicity, compatibility, and robustness.
https://github.com/tiangolo/sqlmodel
GitHub
GitHub - fastapi/sqlmodel: SQL databases in Python, designed for simplicity, compatibility, and robustness.
SQL databases in Python, designed for simplicity, compatibility, and robustness. - fastapi/sqlmodel
Writing a Geometric Solver in Python - Part 1: Modelling Constraints
A series covering how to implement a geometric solver in Python. The part 1 looks at how we might represent a set of geometric relationships in a class hierarchy and partially implement this for a
https://vodden.com/posts/constraining-the-point/
A series covering how to implement a geometric solver in Python. The part 1 looks at how we might represent a set of geometric relationships in a class hierarchy and partially implement this for a
Point
object, and consider the developer experience.https://vodden.com/posts/constraining-the-point/
Vodden
Writing a Geometric Solver in Python - Part 1: Modelling Constraints
I describe, over the series, how to implement a geometric solver in Python. In this article we look at how we might represent a set of geometric relationships in a class hierarchy. We partially implement this for a `Point`object, and consider the developer…
Show HN: Logparser – Alternative to GoAccess Written in Python
https://github.com/lucianmarin/logparser
https://github.com/lucianmarin/logparser
GitHub
GitHub - lucianmarin/logparser: Command line parser for common log format.
Command line parser for common log format. Contribute to lucianmarin/logparser development by creating an account on GitHub.
Clean architectures in Python: a step-by-step example
In 2015 I was introduced by my friend Roberto Ciatti to the concept of Clean Architecture, as it is ...
https://www.thedigitalcatonline.com/blog/2016/11/14/clean-architectures-in-python-a-step-by-step-example/
In 2015 I was introduced by my friend Roberto Ciatti to the concept of Clean Architecture, as it is ...
https://www.thedigitalcatonline.com/blog/2016/11/14/clean-architectures-in-python-a-step-by-step-example/
Thedigitalcatonline
Clean architectures in Python: a step-by-step example
How to create software that can be easily changed and adapted, following the clean architecture principles
A function decorator that rewrites the bytecode to enable goto in Python
https://github.com/snoack/python-goto
https://github.com/snoack/python-goto
GitHub
GitHub - snoack/python-goto: A function decorator, that rewrites the bytecode, to enable goto in Python
A function decorator, that rewrites the bytecode, to enable goto in Python - snoack/python-goto
Stop Hardcoding Sensitive Data in Your Python Applications
Keep your settings and credentials private with .env filesContinue reading on Towards Data ...
https://towardsdatascience.com/stop-hardcoding-sensitive-data-in-your-python-applications-86eb2a96bec3
Keep your settings and credentials private with .env filesContinue reading on Towards Data ...
https://towardsdatascience.com/stop-hardcoding-sensitive-data-in-your-python-applications-86eb2a96bec3
Automating With Python
Learn how to use Python automation to perform common tasks. In this full course you will learn how to build the automation projects: Hacker News Headlines Emailer, TED Talk Downloader, Table Extractor from PDF, Automated Bulk Resume Parser, Image Type Converter and Building an Automated News Summarizer.
https://www.youtube.com/watch?v=s8XjEuplx_U
Learn how to use Python automation to perform common tasks. In this full course you will learn how to build the automation projects: Hacker News Headlines Emailer, TED Talk Downloader, Table Extractor from PDF, Automated Bulk Resume Parser, Image Type Converter and Building an Automated News Summarizer.
https://www.youtube.com/watch?v=s8XjEuplx_U
YouTube
Python Automation Tutorial – How to Automate Tasks for Beginners [Full Course]
Learn how to use Python automation to perform common tasks. In this full course you will learn how to build the following automation projects:
- Hacker News Headlines Emailer
- TED Talk Downloader
- Table Extractor from PDF
- Automated Bulk Resume Parser…
- Hacker News Headlines Emailer
- TED Talk Downloader
- Table Extractor from PDF
- Automated Bulk Resume Parser…
What’s Destroying My Yard? Pest Detection With Raspberry Pi
https://www.hackster.io/tjvantoll/what-s-destroying-my-yard-pest-detection-with-raspberry-pi-890c3a
https://www.hackster.io/tjvantoll/what-s-destroying-my-yard-pest-detection-with-raspberry-pi-890c3a
Hackster.io
What’s Destroying My Yard? Pest Detection With Raspberry Pi
My yard is under attack. That’s why I used a Raspberry Pi, a Pi camera, and some machine learning to catch my yard’s attackers in action.
Flask project setup: TDD, Docker, Postgres and more - Part 1
There are tons of tutorials on Internet that tech you how to use a web framework and how to create ...
https://www.thedigitalcatonline.com/blog/2020/07/05/flask-project-setup-tdd-docker-postgres-and-more-part-1/
There are tons of tutorials on Internet that tech you how to use a web framework and how to create ...
https://www.thedigitalcatonline.com/blog/2020/07/05/flask-project-setup-tdd-docker-postgres-and-more-part-1/
Thedigitalcatonline
Flask project setup: TDD, Docker, Postgres and more - Part 1
A step-by-step tutorial on how to setup a Flask project with TDD, Docker and Postgres
Deploying python functions with Google Cloud Functions
Deploying python functions on Google Cloud FunctionsDeploying a python function was never ...
https://towardsdatascience.com/deploying-python-functions-with-google-cloud-functions-557517865ba7
Deploying python functions on Google Cloud FunctionsDeploying a python function was never ...
https://towardsdatascience.com/deploying-python-functions-with-google-cloud-functions-557517865ba7
Medium
Deploying python functions on Google Cloud Functions
Introduction
A Python Module for Maze Search Algorithms
Python Maze World pyamazeThe module pyamaze is created for the easy generation of random maze and ...
https://towardsdatascience.com/a-python-module-for-maze-search-algorithms-64e7d1297c96
Python Maze World pyamazeThe module pyamaze is created for the easy generation of random maze and ...
https://towardsdatascience.com/a-python-module-for-maze-search-algorithms-64e7d1297c96
Medium
A Python Module for Maze Search Algorithms
Python Maze World pyamaze