PythonHub
2.42K subscribers
2.35K photos
49.1K links
News & links about Python programming.
https://pythonhub.dev/
Download Telegram
How image search works at Dropbox

In this post we’ll describe the core idea behind our image content search method, based on techniques from machine learning, then discuss how we built a performant implementation on Dropbox’s existing search infrastructure.

https://dropbox.tech/machine-learning/how-image-search-works-at-dropbox
Python is now the second most popular language in the world according to TIOBE. This is the highest position that Python reaches since 2001.

https://www.reddit.com/r/Python/comments/nlavn7/python_is_now_the_second_most_popular_language_in/
The Correct Way to Overload Functions in Python

Were you taught that function overloading isn’t possible in Python? Here’s how you can do it with generic functions and multiple dispatch!

https://t.co/JCDEDszwHB
The definitive guide to Python virtual environments with conda

Master Python virtual environments with conda, once and for all. Learn how to install conda from scratch, manage, and packaging virtual environments.

https://whiteboxml.com/blog/the-definitive-guide-to-python-virtual-environments-with-conda
NLP - Text Manipulation

1 Introduction 1.1 What is NLP? 1.2 Future Perspectives for NLP 1.3 Application Areas of NLP 2 ...

https://michael-fuchs-python.netlify.com/2021/05/18/nlp-text-manipulation/
How to Simplify Django Migrations and Deployment

When removing fields from Django models, or adding non-nullable fields, it can be hard to avoid a mismatch between code running on some servers and the database in use. By using django-add-default-value and django-deprecate-fields to simplify the migration and deployment process, you will eliminate a common Django deployment headache. This has been a challenge for a while now. Believe it or not,

https://www.caktusgroup.com/blog/2021/05/25/django-migrations-and-deployment/