PythonHub
2.32K subscribers
2.35K photos
49K links
News & links about Python programming.
https://pythonhub.dev/
Download Telegram
The Many Ways to Deploy a Model

There are many ways to deploy models and perform inference. Here, we share our decision rubric for model deployments using LLM inference as an example.

https://outerbounds.com/blog/the-many-ways-to-deploy-a-model
Summary of Major Changes Between Python Versions

This post is designed to be a quick reference for the major changes introduced with each new version of Python. This can help with taking advantages of using new features as you upgrade your code base, or ensuring that you have the correct guards for compatibility with older versions.

https://www.nicholashairs.com/posts/major-changes-between-python-versions/
Building an LLM from scratch

Learn how to build a modern language model with all the bells and whistles completely from scratch: from vanilla Python to functional coding assistant

https://bclarkson-code.github.io/posts/llm-from-scratch-scalar-autograd/post.html
Vega-Altair: Declarative Visualization in Python

https://altair-viz.github.io/index.html
Algorithmic Art with Python

In this talk we’re going to start from nothing and build out our own tools for making art in Python, no AI needed! We’ll show how Python’s expressiveness allows us to describe graphics elegantly and use that to make some unique art programmatically.

https://www.youtube.com/watch?v=_XeRM-4DZz0
How to dockerize a Django, Preact, and PostgreSQL Application

Dockerizing your Django application can be intimidating, but the rewards outweigh the risks. In this guide, Charlie Macnamara walks you through the setup process so you can get the most out of your applications.

https://www.honeybadger.io/blog/dockerize-django-preact-postgres
Tracing System Calls in Python

The article discusses the author's development of a tool added to Cirron that enables the tracing of system calls made by Python code. It provides an example of tracing the "print" function and explains the tool's implementation using the strace tool for effective analysis. The article also outlines the initial intention to use the ptrace syscall for implementation and the subsequent uti...

https://blog.mattstuchlik.com/2024/02/16/counting-syscalls-in-python.html