Python drawer
@python101
33
subscribers
1
photo
2
files
3.7K
links
A collection of curated Python resources from trustworthy sources.
Download Telegram
Join
Python drawer
33 subscribers
Python drawer
https://julien.danjou.info/python-memcached-efficient-caching-in-distributed-applications/
Python drawer
https://www.youtube.com/watch?v=twuhocLtGCg
YouTube
Discovering Hidden APIs | Part-1 (GeeksforGeeks Compiler API)
Many a times, websites do not make their APIs public and use them privately on their webpages.
In this video, learn how to discover and explore those web APIs and use them in your Python programs. We take GeeksforGeeks IDE as an example.
Code: https://…
Python drawer
https://blog.quiltdata.com/import-almost-anything-in-python-an-intro-to-module-loaders-and-finders-f5e7b15cda47
Python drawer
https://blog.jupyter.org/introducing-traefikproxy-a-new-jupyterhub-proxy-based-on-traefik-4839e972faf6
Medium
Introducing TraefikProxy, a new JupyterHub proxy based on Traefik
Removing the single point of failure from your JupyterHub infrastructure with traefik, etcd and Outreachy
Python drawer
https://towardsdatascience.com/10-steps-to-set-up-your-python-project-for-success-14ff88b5d13
Medium
10 Steps to Set Up Your Python Project for Success
How to add tests, CI, code coverage, and more
Python drawer
https://medium.com/@abulka/async-await-for-wxpython-c78c667e0872
Medium
Async/await for wxPython
Python 3 GUI apps with asynchronous functionality
Python drawer
https://www.pyimagesearch.com/2019/03/04/holistically-nested-edge-detection-with-opencv-and-deep-learning/
PyImageSearch
Holistically-Nested Edge Detection with OpenCV and Deep Learning - PyImageSearch
In this guide you will learn how to apply Holistically-Nested Edge Detection (HED) with OpenCV and Deep Learning. We'll then compare the results of HED with Canny edge detection.
Python drawer
https://stackabuse.com/affine-image-transformations-in-python-with-numpy-pillow-and-opencv/
Stack Abuse
Affine Image Transformations in Python with Numpy, Pillow and OpenCV
In this article I will be describing what it means to apply an affine transformation to an image and how to do it in Python. First I will demonstrate the low le...
Python drawer
https://www.youtube.com/watch?v=7PGFin30c4o&list=PLamqrZ7b2mV5IM9_xGkNT2CPGP9wWKN3c
YouTube
How to Build a Text Editor with PYTHON and TKINTER - First Part - (1/3)
►Do You Want More Videos about Python, Web Development and Programming? ►Subscribe NOW: https://www.youtube.com/channel/UCxPWtz5N--X3IyYJ13Zr99A?sub_confirma...
Python drawer
https://towardsdatascience.com/data-engineering-with-python-django-and-postgresql-99409492769
Medium
Data Engineering with Python, Django, and PostgreSQL
A brief look at some of the plumbing behind Data Science
Python drawer
https://dfdazac.github.io/sinkhorn.html
Daniel Daza
Approximating Wasserstein distances with PyTorch
Many problems in machine learning deal with the idea of making two probability distributions to be as close as possible. In the simpler case where we only have observed variables $\mathbf{x}$ (say, images of cats) coming from an unknown distribution $p(\mathbf{x})$…
Python drawer
https://blog.lerner.co.il/understanding-python-slices/
Reuven Lerner's Blog
Understanding Python slices - Reuven Lerner's Blog
Let’s say that you have a Python string, and want to grab a substring from it. The best way to do so is with a “slice”: >>> s = 'abcdefghij'>>> print(s[3:8])defgh In the above code, we’ve defined a string. We’ve then asked for the string to be returned, starting…
Python drawer
https://github.com/chiphuyen/lazynlp
GitHub
GitHub - chiphuyen/lazynlp: Library to scrape and clean web pages to create massive datasets.
Library to scrape and clean web pages to create massive datasets. - chiphuyen/lazynlp
Python drawer
https://github.com/boramalper/pydis
GitHub
GitHub - boramalper/pydis: A redis clone in Python 3 to disprove some falsehoods about performance.
A redis clone in Python 3 to disprove some falsehoods about performance. - boramalper/pydis
Python drawer
https://github.com/spacetimeengineer/spacetimeengine
GitHub
GitHub - spacetimeengineer/spacetimeengine: A Python utility for analyzing a given solution to the Einstein's field equations.…
A Python utility for analyzing a given solution to the Einstein's field equations. Built on Sympy. - spacetimeengineer/spacetimeengine
Python drawer
https://realpython.com/courses/writing-beautiful-python-code-pep-8/
Realpython
Writing Beautiful Pythonic Code With PEP 8 – Real Python
Learn how to write high-quality, readable code by using the Python style guidelines laid out in PEP 8. Following these guidelines helps you make a great impression when sharing your work with potential employers and collaborators. This course outlines the…
Python drawer
https://sobolevn.me/2019/03/enforcing-srp
Python drawer
https://towardsdatascience.com/10-steps-to-set-up-your-python-project-for-success-14ff88b5d13
Medium
10 Steps to Set Up Your Python Project for Success
How to add tests, CI, code coverage, and more
Python drawer
https://www.pyimagesearch.com/2019/03/11/liveness-detection-with-opencv/
PyImageSearch
Liveness Detection with OpenCV - PyImageSearch
Learn how to detect liveness with OpenCV, Deep Learning, and Keras. You'll learn how to detect fake faces and perform anti-face spoofing in face recognition systems with OpenCV.
Python drawer
https://realpython.com/intro-to-pyenv/
Realpython
Managing Multiple Python Versions With pyenv – Real Python
Learn how to use pyenv to manage multiple Python versions, prevent conflicts, and keep your projects compatible and development smooth.