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://labs.meanpug.com/custom-application-metrics-with-django-prometheus-and-kubernetes/
MeanPug Digital
Custom Application Metrics with Django, Prometheus, and Kubernetes
Learn how to instrument your Django application with custom Prometheus metrics and deploy to a Kubernetes cluster.
Python drawer
https://blog.floydhub.com/multiprocessing-vs-threading-in-python-what-every-data-scientist-needs-to-know/
Python drawer
https://m.youtube.com/watch?v=svWKZSWl_F4
YouTube
Operator Overloading in Python: All you need to know to get started mastering OOP and Python Classes
Want to understand non-trivial Python source code? Looking to take your knowledge and ability with Python Classes further? In this tutorial I'll introduce yo...
Python drawer
https://towardsdatascience.com/how-to-create-an-interactive-geographic-map-using-python-and-bokeh-12981ca0b567
Medium
How to Create an Interactive Geographic Map Using Python and Bokeh
Interactive Data Visualization with Choropleth Maps
Python drawer
https://developers.redhat.com/blog/2019/09/11/develop-with-django-2-and-python-3-in-a-container-with-red-hat-enterprise-linux/
Red Hat Developer
Develop with Django 2 and Python 3 in a container with Red Hat Enterprise Linux | Red Hat Developer
In my previous article, Run Red Hat Enterprise Linux 8 in a container on RHEL 7, I showed how to start developing with the latest versions of languages,
Python drawer
https://www.dataschool.io/python-pandas-tips-and-tricks/
Data School
Master Python's pandas library with these 100 tricks
100 tricks that will save you time and energy every time you use pandas! Up-to-date with the latest version of pandas (0.25)
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://blogs.dropbox.com/tech/2019/09/our-journey-to-type-checking-4-million-lines-of-python/
Python drawer
https://www.pyimagesearch.com/2019/09/09/multiprocessing-with-opencv-and-python/
PyImageSearch
Multiprocessing with OpenCV and Python - PyImageSearch
In this tutorial, you will learn how to use multiprocessing with OpenCV and Python to perform feature extraction. You’ll learn how to use multiprocessing with OpenCV to parallelize feature extraction across the system bus, including all processors and cores…
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...