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://pydist.com/blog/never-delete-a-release
Pydist
(Almost) Never Delete a Release
Why you should (almost) never delete a bad release from PyPI—and what to do as a package maintainer instead.
Python drawer
https://lerner.co.il/2019/09/10/legb-meet-icpo-pythons-search-strategy-for-attributes/
Reuven Lerner
LEGB? Meet ICPO, Python's search strategy for attributes
When it comes to variables, Python has a well-known search strategy, known by the acronym "LEGB." Whenever you mention a variable — and by "variable," I mean a name that could be referencing data, a
Python drawer
https://www.dataschool.io/pandas-dot-notation-vs-brackets/
Data School
Should you use "dot notation" or "bracket notation" with pandas?
There are two ways to select a Series from a DataFrame: "dot notation" and "bracket notation" (square brackets). Find out which one you should use, and why!
Python drawer
https://hakibenita.com/python-django-optimizing-excel-export
Hakibenita
How "Export to Excel" Almost Killed Our System
And How We Eventually Made It 4 Times Faster
Python drawer
https://realpython.com/pygame-a-primer/
Realpython
Pygame: A Primer on Game Programming in Python – Real Python
In this step-by-step tutorial, you'll learn how to use Pygame. This library allows you to create games and rich multimedia programs in Python. You'll learn how to draw items on your screen, implement collision detection, handle user input, and much more!
Python drawer
https://instagram-engineering.com/types-for-python-http-apis-an-instagram-story-d3c3a207fdb7
Python drawer
https://broadcast.listennotes.com/the-boring-technology-behind-listen-notes-56697c2e347b
Listen Notes
The boring technology behind a one-person Internet company
The tech stack of Listen Notes, the best podcast search engine and database.
Python drawer
https://maxmautner.com/2019/09/12/java-primer-for-python-developers.html
Mr. Max Mautner
Java Primer for Python Developers
I took these notes while ramping up on Java, as I onboarded at Personal Capital in my first Java role since college. There are large distinctions between the two programming languages, but I’ll try to give the most notable that I encountered–as I approached…
Python drawer
https://www.python.org/dev/peps/pep-0603/
Python Enhancement Proposals (PEPs)
PEP 603 – Adding a frozenmap type to collections | peps.python.org
A persistent data structure is defined as a data structure that preserves the previous version of the data when the data is modified. Such data structures are effectively immutable, as operations on them do not update the structure in-place, but instead...
Python drawer
https://www.mattlayman.com/blog/2019/python-alternative-docker/
Matt Layman
Python alternative to Docker
Are you using Python and thinking about containers to deploy your app? Before you jump to Docker, consider other package formats that may fit better. This article explores one such format from LinkedIn.
Python drawer
https://medium.com/riselab/functional-rl-with-keras-and-tensorflow-eager-7973f81d6345
Medium
Functional RL with Keras and Tensorflow Eager
We explore a functional paradigm for implementing scalable reinforcement learning (RL) algorithms with TensorFlow 2.0
Python drawer
https://medium.com/tensorflow/deeppavlov-an-open-source-library-for-end-to-end-dialog-systems-and-chatbots-31cf26849e37
Medium
DeepPavlov: an open-source library for end-to-end dialog systems and chatbots
A guest post by Vasily Konovalov
Python drawer
https://instagram-engineering.com/types-for-python-http-apis-an-instagram-story-d3c3a207fdb7
Python drawer
https://www.dataquest.io/blog/how-much-spent-amazon-data-analysis/
Dataquest
Find Out How Much You've Spent on Amazon — Analyze Your Data
How much have I spent on Amazon? That's a scary question, but if you want to know the answer, here's how you can find it...and a lot more!
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/