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
Introduction to Web Scraping using Python – Hacker Noon
https://hackernoon.com/introduction-to-web-scraping-using-python-89b15b57150c
Hackernoon
Introduction to Web Scraping using Python
One of the most efficient ways to collect the data as a data scientist is with the help of <em>web scraping.</em>
Python drawer
https://www.reddit.com/r/sysadmin/comments/b1e88m/python_learning_video_series_for_network/?utm_medium=android_app&utm_source=share
reddit
Python learning video Series for Network Administrators with...
Hi Everyone,I have started creating Python learning video Series for Network Administrators to share my knowledge on python from network context...
Python drawer
https://www.python.org/dev/peps/pep-0584/
Python Enhancement Proposals (PEPs)
PEP 584 – Add Union Operators To dict | peps.python.org
This PEP proposes adding merge (|) and update (|=) operators to the built-in dict class.
Python drawer
https://realpython.com/python-refactoring/
Realpython
Refactoring Python Applications for Simplicity – Real Python
In this step-by-step tutorial, you'll learn how to refactor your Python application to be simpler and more maintainable and have fewer bugs. You'll cover code metrics, refactoring tools, and common anti-patterns.
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/