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://medium.com/@harshvb7/managing-elasticsearch-in-django-like-a-pro-adfcd984920d
Medium
Managing Elasticsearch in Django like a pro
I have used Elasticsearch in a couple of my projects recently and I really love it. Its an excellent backend to build search engines or…
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://pythonbytes.fm/episodes/show/119/assorted-files-as-django-orm-backends-with-alkali
pythonbytes.fm
Assorted files as Django ORM backends with Alkali
News and announcements from the Python community for the week of Feb 26th, 2019
Python drawer
https://editorconfig.org
editorconfig.org
EditorConfig is a file format and collection of text editor plugins for maintaining consistent coding styles between different editors and IDEs.
Python drawer
https://realpython.com/traditional-face-detection-python/
Realpython
Traditional Face Detection With Python – Real Python
In this article on face detection with Python, you'll learn about a historically important algorithm for object detection that can be successfully applied to finding the location of a human face within an image.
Python drawer
http://rahmonov.me/posts/write-python-framework-part-three/
rahmonov.me
How to write a Python web framework. Part III.
<p>The third post of the series where we will be writing our own Python framework just like Flask and Django.</p>
Python drawer
https://philip-trauner.me/blog/post/python-quirks-implicit-return
Philip Trauner
Python Quirks: Implicit Return
Python function always have to return something, right? Well, its complicated...
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