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://www.python.org/doc/sunset-python-2/
Python.org
Sunsetting Python 2
The official home of the Python Programming Language
Python drawer
https://github.com/typeddjango/awesome-python-typing
GitHub
GitHub - typeddjango/awesome-python-typing: Collection of awesome Python types, stubs, plugins, and tools to work with them.
Collection of awesome Python types, stubs, plugins, and tools to work with them. - typeddjango/awesome-python-typing
Python drawer
https://github.com/ml-tooling/ml-workspace
GitHub
GitHub - ml-tooling/ml-workspace:
đź›
All-in-one web-based IDE specialized for machine learning and data science.
đź›
All-in-one web-based IDE specialized for machine learning and data science. - ml-tooling/ml-workspace
Python drawer
https://github.com/30-seconds/30-seconds-of-python
GitHub
GitHub - Chalarangelo/30-seconds-of-python: Short Python code snippets for all your development needs
Short Python code snippets for all your development needs - Chalarangelo/30-seconds-of-python
Python drawer
https://github.com/NVIDIA/NeMo
GitHub
GitHub - NVIDIA-NeMo/Speech: A scalable generative AI framework built for researchers and developers working on Large Language…
A scalable generative AI framework built for researchers and developers working on Large Language Models, Multimodal, and Speech AI (Automatic Speech Recognition and Text-to-Speech) - NVIDIA-NeMo/S...
Python drawer
http://www.myhdl.org/
Python drawer
https://github.com/albertz/PyCParser
GitHub
GitHub - albertz/PyCParser: C parser and interpreter written in Python with automatic ctypes interface generation
C parser and interpreter written in Python with automatic ctypes interface generation - albertz/PyCParser
Python drawer
https://github.com/AlexandreDecan/python-intervals
GitHub
AlexandreDecan/python-intervals
A Python library providing data structure and operations for intervals - AlexandreDecan/python-intervals
Python drawer
https://www.peterbe.com/plog/fastest-python-function-to-slugify-a-string
Peterbe
Fastest Python function to slugify a string
Stuff in Peter's head
Python drawer
https://www.techbeamers.com/python-heapq/
TechBeamers
Python Heapq Explained
Quickly learn about Python Heapq and call its functions to add/remove elements with O(log n), and create Priority Queues with examples.
Python drawer
https://www.pythondoeswhat.com/2019/09/welcome-to-float-zone.html?m=1
Pythondoeswhat
Welcome to the float zone...
Consider a REPL with tw o tuples, a and b. >>> type(a), type(b) (<type 'tuple'>, <type 'tuple'>) >>> a == b True So far, so good. But l...
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...