PythonHub
2.42K subscribers
2.35K photos
49.1K links
News & links about Python programming.
https://pythonhub.dev/
Download Telegram
Measuring memory usage in Python: it’s tricky!

In this article you’ll learn: A simplified but informative model of how memory works, Two measures of memory–resident memory and allocated memory–and how to measure them in Python and The tradeoffs between the two.

https://pythonspeed.com/articles/measuring-memory-python/
The best Python HTTP clients for 2021

There are a huge number of HTTP clients available for Python - a quick search for “Python HTTP Clients” on Github returns over 1700 results(!) How do you make sense of all of them and find one which is right for your particular use case? In this article we're going to cover five of the best HTTP clients currently available for Python and detail why each of them might be one for you to consider.

https://www.scrapingbee.com/blog/best-python-http-clients/
schwifty

schwifty is a Python library that let's you easily work with IBANs and BICs as specified by the ISO. IBAN is the Internationtional Bank Account Number and BIC the Business Identifier Code. Both are used for international money transfer.

https://github.com/mdomke/schwifty
Beautiful Interactive Tables for your Flask Templates

Rendering a table with data in a Flask template is a relatively simple task when the table is short, but can be incredibly hard for larger tables that require features such as sorting, pagination and searching. This article shows you how to integrate the dataTables.js library in your templates, which will allow you to create fully featured tables with ease!

https://blog.miguelgrinberg.com/post/beautiful-interactive-tables-for-your-flask-templates
NLP - Text Pre-Processing I (Text Cleaning)

1 Introduction 2 Import the Libraries and the Data 3 Definition of required Functions 4 Text ...

https://michael-fuchs-python.netlify.com/2021/05/22/nlp-text-pre-processing-i-text-cleaning/