PythonHub
2.37K subscribers
2.35K photos
49K links
News & links about Python programming.
https://pythonhub.dev/
Download Telegram
AI-Math-Notes

AI Math Notes is an interactive drawing application that allows users to draw mathematical equations on a canvas. Once an equation is drawn, the application uses a multimodal LLM to calculate and display the result next to the equals sign.

https://github.com/ayushpai/AI-Math-Notes
NumPy 2.0.0

NumPy 2.0.0 is the first major release since 2006. It is the result of 11 months of development since the last feature release and is the work of 212 contributors spread over 1078 pull requests. It contains a large number of exciting new features as well as changes to both the Python and C APIs.

https://github.com/numpy/numpy/releases/tag/v2.0.0
Parsing Python ASTs 20x Faster with Rust

The post describes how the integration of Rust can significantly speed up the parsing of Python Abstract Syntax Trees (ASTs). By rewriting critical components in Rust, the process can be made up to 20 times faster compared to the original Python implementation, offering substantial performance improvements for developers working with ASTs in Python.

https://www.gauge.sh/blog/parsing-python-asts-20x-faster-with-rust
hftbacktest

A high-frequency trading and market-making backtesting tool in Python and Rust, which accounts for limit orders, queue positions, and latencies, utilizing full tick data for trades and order books, with real-world crypto market-making examples for Binance Futures

https://github.com/nkaz001/hftbacktest
Optimize scheduling and routing in Python: a new open source solver Timefold

Solve the Vehicle Routing Problem, Maintenance Scheduling, Employee Scheduling, etc in Python.

https://timefold.ai/blog/new-open-source-solver-python
Build Full Stack Web Apps in Pure Python with Reflex - No Javascript Required

The video demonstrates building a full stack web application using only Python with Reflex, bypassing the need for HTML, CSS, and JavaScript. It covers creating interfaces, adding features like user authentication and data storage, managing data efficiently, and customizing design with Radix UI for a seamless development experience.

https://www.youtube.com/watch?v=ITOZkzjtjUA
Official PyTorch Documentary: Powering the AI Revolution

The film reveals the true story behind PyTorch's creation, highlighting the contributions of its dedicated developers. It showcases the strength of the PyTorch community, aiming to inspire further contributions and recognition of its importance in the open source world.

https://www.youtube.com/watch?v=rgP_LBtaUEc
A Complete Guide to Pytest Fixtures

In this tutorial, I'll guide you through the ins and outs of Pytest fixtures. You'll learn how to create fixtures, parameterize them for flexibility, and leverage their power to create efficient, reliable, and maintainable unit tests.

https://betterstack.com/community/guides/testing/pytest-fixtures-guide/
🔥1