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.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/
Python drawer
https://www.kevinpeters.net/auto-formatters-for-python
www.kevinpeters.net
The 3 best auto formatters for Python
🔥
Save time by using the best auto formatters for python - a comparison to find the best for Python 2 and Python 3
Python drawer
https://hodovi.cc/blog/bootstrapping-infrastructure-for-django-applications-with-terraform/
Python drawer
https://docs.python.org/3.9/whatsnew/3.9.html
Python drawer
https://devblogs.microsoft.com/python/announcing-support-for-native-editing-of-jupyter-notebooks-in-vs-code/
Microsoft News
Announcing Support for Native Editing of Jupyter Notebooks in VS Code
Today, we're excited to announce the first release of native Jupyter notebook support inside VS Code through the Python extension that shipped today! This brings together the interactivity of Jupyter Notebooks and the power of VS Code, offering a brand-new…
Python drawer
https://www.digitalocean.com/community/tutorials/how-to-set-up-flask-with-mongodb-and-docker
Digitalocean
How To Set Up Flask with MongoDB and Docker | DigitalOcean
As a micro web framework built on Python, Flask provides an extensible way for developers to grow their applications through extensions that can be integrate…
Python drawer
https://pbpython.com/pandas-qcut-cut.html
Pbpython
Binning Data with Pandas qcut and cut
Pandas qcut and cut are both used to bin continuous values into discrete buckets or bins. This article explains the differences between the two commands and how to use each.
Python drawer
https://stackabuse.com/uploading-files-to-aws-s3-with-python-and-django/
Stack Abuse
Uploading Files to AWS S3 with Python and Django
AWS S3 is a great, low-cost service for file storage. In this article, we'll be using Python and Django to upload files to AWS S3.
Python drawer
https://skerritt.blog/divide-and-conquer-algorithms/
Skerritt.blog
Divide and Conquer Algorithms with Python Examples
Often I’ll hear about how you can optimise a for loop to be faster or how switch statements are faster than if statements. Most computers have over 1 core, with the ability to support multiple threads. Before worrying about optimising for loops or if statements…
Python drawer
https://haptik.ai/tech/how-haptik-carried-out-their-largest-python3-migration/
www.haptik.ai
Offline On-Device Ml – Text Classification
With the release of TensorFlow lite by Google, it is possible to ship and run any deep learning model directly on mobile apps using Firebase MLKit.
Python drawer
https://www.pythonforthelab.com/blog/complete-guide-to-imports-in-python-absolute-relative-and-more/
Python for the Lab
Complete Guide to Imports in Python: Absolute, Relative, and More
How to plan your code so imports are clear and clean