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://devblogs.microsoft.com/python/python-in-visual-studio-code-february-2019-release/
Python
Python in Visual Studio Code - February 2019 Release
We are pleased to announce that the February 2019 release of the Python Extension for Visual Studio Code is now available. You can download the Python extension from the Visual Studio Marketplace, or install it directly from the extension gallery in Visual…
Python drawer
https://snyk.io/blog/python-security-best-practices-cheat-sheet/
Snyk
Python security best practices cheat sheet | Snyk
In this installment of our cheat sheet series, we’re going to cover the best practices for Python security.
Python drawer
https://bluesock.org/~willkg/blog/dev/bleach_stepping_down.html
Will's blog
Bleach: stepping down as maintainer
What is it?
Bleach is a Python library for sanitizing
and linkifying text from untrusted sources for safe usage in HTML.
I'm stepping down
In October 2015, I had a conversation with James Socol that
Python drawer
https://www.b-list.org/weblog/2019/mar/04/class/
James Bennett
Contributing to classiness (in Django)
A couple weeks ago I ran [a poll on Twitter](https://twitter.com/ubernostrum/status/1096609885213491201) asking people whether they'd ever used, or considered using, the …
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://lwn.net/Articles/780737/
lwn.net
Revisiting PEP 394
With the uptake of Python 3 (and the imminent end of life for
Python 2.7), there is a question of
which version of Python a user should get when they type "python"
at the
command line or have it as part of a shebang
("#!") line in a script. Back in 2011…
Python drawer
https://www.paulox.net/2019/03/03/my-involvement-in-the-python-community/
PauLoX
My involvement in the Python community
An article about me and my involvement in the Python community (mainly Django) as a Free Software developer, GNU/Linux user and tech conference speaker.
Python drawer
https://zerowithdot.com/private-pip-azure/
Zerowithdot
Hosting private pip packages using Azure Artifacts
Marry science code with operations? Organize your python code as private pip package with Azure Artifacts and integrate it using modified virtual environment.
Python drawer
https://victorzhou.com/blog/intro-to-neural-networks/
Victorzhou
Machine Learning for Beginners: An Introduction to Neural Networks - victorzhou.com
A simple explanation of how they work and how to implement one from scratch in Python.
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…