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://stephanheijl.com/protein_sequence_ml.html
Python drawer
https://benjam.info/blog/posts/2019-09-18-python-deep-dive-tokenizer/
Python drawer
https://srcco.de/posts/kubernetes-and-python.html
SRCco.de
Kubernetes and Python
While Go is the language-of-choice in the cloud-native world, Python has a huge community and makes it really easy to extend Kubernetes in only a few lines of code.
This post is a follow-up to a talk
Python drawer
https://timothycrosley.github.io/hypothesis-auto/
Python drawer
https://leancrew.com/all-this/2019/09/discontinuous-ranges-in-python/
Leancrew
Discontinuous ranges in Python
I've started using the unpacking operator to concatenate ranges with gaps.
Python drawer
https://kanoki.org/2019/09/16/dataframe-visualization-with-pandas-plot/
Python drawer
https://amehta.github.io/posts/2019/09/create-and-apply-simple-filters-to-an-image-using-opencv-and-python/
amehta.github.io
Create and apply simple filters to an image using OpenCV and Python
In this blog post, I will show you how we can enhance our images using colored filters and add border backgrounds.
Original Original w/ color filter Original w/ color border Let’s get started.
1. Simple color filter Lets start with first creating…
Python drawer
https://skerritt.blog/learn-functional-python-in-10-minutes/
skerritt.blog
Learn Functional Python in 10 Minutes
In this short 10 minute article, you’ll learn what the functional paradigm is in Python. You’ll also learn about list comprehensions.
📌
Functional Paradigm In an imperative paradigm, we do things by giving the computer a sequence of tasks and then it executes…
Python drawer
https://blog.datasciencedojo.com/network-theory-game-of-thrones/
Data Science Blog | AI, ML, big data analytics
Game of Thrones and Network Theory | Data Analysis in Python
Analyzing Game of Thrones data to identify character importance, factions and gender interactions using Network Theory and Python.
Python drawer
http://blog.rtwilson.com/matplotlib-titles-have-configurable-locations-and-you-can-have-more-than-one-at-once/
Python drawer
https://tryexceptpass.org/article/continuous-builds-subprocess-execution/
tryexceptpass.org
Command Execution Tricks with Subprocess - Designing CI/CD Systems
Use Python's subprocess module to execute instructions inside a Docker container that build and test your code in an automated CI/CD system.
Python drawer
https://www.benfrederickson.com/dont-pickle-your-data/
Benfrederickson
Don't Pickle Your Data
Python drawer
https://realpython.com/python-async-features/
Realpython
Getting Started With Async Features in Python – Real Python
This step-by-step tutorial gives you the tools you need to start making asynchronous programming techniques a part of your repertoire. You'll learn how to use Python async features to take advantage of IO processes and free up your CPU.
Python drawer
https://hackaday.com/2019/09/18/whats-in-a-name-tales-of-python-perl-and-the-gimp/
Hackaday
What’s In A Name? Tales Of Python, Perl, And The GIMP
In the older days of open source software, major projects tended to have their Benevolent Dictators For Life who made all the final decisions, and some mature projects still operate that way. Guido…
Python drawer
https://github.com/psf/requests/issues/5149
GitHub
Project maintainence · Issue #5149 · psf/requests
Given that requests has now moved under @psf ownership (
❤️
), it'd be good to have some clarification around the project maintenance. On the assumption that Kenneth is fully handing over managem...
Python drawer
https://snarky.ca/how-do-you-verify-pypi-can-be-trusted/
Tall, Snarky Canadian
How do you verify that PyPI can be trusted?
A co-worker of mine attended a technical talk about how Go's module mirror works and he asked me whether there was something there that Python should do. Best technical talk that I've seen in a long time: @katie_hockman on Go Module Proxy. Motivating the…
Python drawer
https://glyph.twistedmatrix.com/2019/10/the-numbers-they-lie.html
Twistedmatrix
The Numbers, They Lie
when 2 + 2 = 4.00000000000000000001
Python drawer
https://medium.com/@highcenburg/django-template-tags-not-often-used-in-tutorials-78d6c5f29b26
Medium
Six Django template tags not often used in tutorials
This article is for those who don’t read the documentation, and I, who had the [Dash](https://kapeli.com/dash) app for a few months now…
Python drawer
https://switowski.com/blog/ipython-autoreload
Sebastian Witowski
Automatically Reload Modules with %autoreload
Tired of having to reload a module each time you change it? %autoreload to the rescue!
Python drawer
https://morepypy.blogspot.com/2019/10/pypys-new-json-parser.html
Blogspot
PyPy's new JSON parser
Introduction In the last year or two I have worked on and off on making PyPy's JSON faster, particularly when parsing large JSON files. I...
Python drawer
https://skerritt.blog/timsort-the-fastest-sorting-algorithm-youve-never-heard-of/