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://realpython.com/python-concurrency/
Realpython
Speed Up Your Python Program With Concurrency – Real Python
In this tutorial, you'll explore concurrency in Python, including multi-threaded and asynchronous solutions for I/O-bound tasks, and multiprocessing for CPU-bound tasks. By the end of this tutorial, you'll know how to choose the appropriate concurrency model…
Python drawer
https://gregoryszorc.com/blog/2019/01/10/what-i've-learned-about-optimizing-python/
Python drawer
https://www.codementor.io/ohasanli/parsing-text-in-python-via-textfsm-r4hk9oj1h
Python drawer
https://stackabuse.com/dockerizing-python-applications/
Stack Abuse
Dockerizing Python Applications
Docker is a widely accepted and used tool by leading IT companies to build, manage and secure their applications. Containers, like Docker, allow developers to...
Python drawer
https://www.codementor.io/seantullis/improve-your-code-with-atomic-functions-r6dt43fy7
www.codementor.io
Improve Your Code With Atomic Functions | Codementor
In your studies, you may have encountered the terms "atomic function" and "Don't Repeat Yourself (DRY)". Today, I'm going to demonstrate how these concepts work together to provide easily...
Python drawer
https://orbifold.xyz/check-in-json.html
orbifold.xyz
Orbifolds and Other Games - Checking in JSON
Python drawer
https://www.redblobgames.com/pathfinding/a-star/introduction.html
Redblobgames
Red Blob Games: Introduction to the A* Algorithm
Interactive tutorial for A*, Dijkstra's Algorithm, and other pathfinding algorithms
Python drawer
https://realpython.com/django-migrations-a-primer/
Realpython
Django Migrations: A Primer – Real Python
In this tutorial, you’ll get comfortable with Django migrations and learn how to create database tables without writing any SQL, how to automatically modify your database after you changed your models, and how to revert changes made to your database.
Python drawer
https://www.pyimagesearch.com/2019/01/14/machine-learning-in-python/
PyImageSearch
Machine Learning in Python - PyImageSearch
Are you struggling to get your start in machine learning using Python? In this step-by-step, hands-on tutorial you will learn how to perform machine learning using Python. Let's get started!
Python drawer
https://heartbeat.fritz.ai/automated-machine-learning-in-python-5d7ddcf6bb9e
Medium
Automated Machine Learning in Python
Can machine learning processes themselves be automated? This article will explore current answers to this question
Python drawer
https://www.willmcgugan.com/blog/tech/post/filesystem-magic-with-python/
Will McGugan Tech
Filesystem Magic with Python
I recently added a number of examples on working with files and directories with Python and PyFilesystem. Counting Bytes of Python The first example, is count_py.py which recursively sums up the number of bytes stored in a directory, and renders it in a friendly…
Python drawer
https://www.marsja.se/probabilistic-programming-in-python/
Erik Marsja
Probabilistic Programming in Python - Erik Marsja
In this hands on guest post you will learn how to carry out probabilistic programming (e.g., Bayesian Statistics) using python, ArViz, and PyMC3.
Python drawer
https://www.kennethreitz.org/essays/kenneth-reitzs-code-style
Kenneth Reitz
Kenneth Reitz’s Code Style
™
The Requests codebase uses the PEP 8 code style. In addition to the standards outlined in PEP 8, we have a few guidelines: Line-length can exceed 79 characters, to 100, when convenient. Line-length can exceed 100 characters, when doing otherwise…
Python drawer
https://app.programmingfonts.org
Python drawer
https://realpython.com/async-io-python/
Realpython
Python's asyncio: A Hands-On Walkthrough – Real Python
Explore how Python asyncio works and when to use it. Follow hands-on examples to build efficient programs with coroutines and awaitable tasks.
Python drawer
http://blog.vomkonstant.in/2019/01/21/pythons-most-underrated-game-engine-for-beginners/
blog.vomkonstant.in
Python’s most underrated game engine for beginners -
Making games is one of the coolest things you can do with self-taught programming skills. You have complete creative freedom, you don't have to have a completely unique and marketable idea and you're not potentially putting anyone in danger by messing up.…
Python drawer
https://philip-trauner.me/blog/post/python-quirks-lambdas
Philip Trauner
Python Quirks: Lambdas
Python lambdas are weird and underpowered... But why?
Python drawer
https://www.pyimagesearch.com/2019/01/21/regression-with-keras/
PyImageSearch
Regression with Keras - PyImageSearch
In this tutorial you will learn how to perform regression using Keras. You will learn how to train a Keras neural network for regression and continuous value prediction, specifically in the context of house price prediction.
Python drawer
https://blog.florimondmanca.com/how-i-built-a-web-framework-and-became-an-open-source-maintainer
Florimond Manca
How I Built A Python Web Framework And Became An Open Source Maintainer - Florimond Manca
Inspirational thoughts and tips on starting and managing an open source project, based on my experience building Bocadillo, an asynchronous Python web framework.
Python drawer
https://www.thurrott.com/windows/windows-10/196830/python-lands-on-the-windows-10-app-store
Thurrott.com
Python Lands on the Windows 10 App Store - Thurrott.com
You can now install the latest version of Python 3.7 from the Microsoft Store.
Python drawer
https://robert-mcdermott.gitlab.io/posts/speeding-up-python-with-nim/
robert-mcdermott.gitlab.io
Speeding Up Python with Nim
Python is a great programming language that is optimized for programmer productivity; it’s amazing sometimes how quickly you can go from idea to minimally working solution. It achieves this unbeatably low “time-to-code” via its very dynamic nature and easy…