January 2022
Intermediate to advanced
384 pages
7h 30m
English
In the previous chapter, we managed to solve a real-world problem with Rust. However, we also learned an important lesson, that is, the good implementation of code, such as adding vectors or merging dataframes, along with third-party modules, such as NumPy, can outperform badly implemented self-coded Rust solutions. However, we know that comparing implementation to implementation, Rust is a lot faster than Python. We already understand how to fuse Rust with a standard Python script. However, Python is used for more than just running scripts. A popular use for Python is in web applications.
In this chapter, we will build a Flask web application with NGINX, a database, and a message bus implemented ...
Read now
Unlock full access