PythonHub
2.37K subscribers
2.35K photos
49K links
News & links about Python programming.
https://pythonhub.dev/
Download Telegram
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
7 Functional Programming Techniques Every Developer Should Know

This video explores 7 functional programming techniques and demonstrate their functionality. Despite Python not being a purely functional language, embracing these techniques can greatly enhance your Python skills.

https://www.youtube.com/watch?v=Rp9Ha0rVM1w
A Guide to Python's Weak References Using weakref Module

Chances are that you never touched and maybe haven't even heard about Python's weakref module. While it might not be commonly used in your code, it's fundamental to the inner workings of many libraries, frameworks and even Python itself. So, in this article we will explore what it is, how it is helpful, and how you could incorporate it into your code as well.

https://martinheinz.dev/blog/112