
- 384 pages
- English
- ePUB (mobile friendly)
- Available on iOS & Android
Speed Up Your Python with Rust
About this book
Discover how to inject your code with highly performant Rust features to develop fast and memory-safe applicationsKey Features• Learn to implement Rust in a Python system without altering the entire system• Write safe and efficient Rust code as a Python developer by understanding the essential features of Rust• Build Python extensions in Rust by using Python NumPy modules in your Rust codeBook DescriptionPython has made software development easier, but it falls short in several areas including memory management that lead to poor performance and security. Rust, on the other hand, provides memory safety without using a garbage collector, which means that with its low memory footprint, you can build high-performant and secure apps relatively easily. However, rewriting everything in Rust can be expensive and risky as there might not be package support in Rust for the problem being solved. This is where Python bindings and pip come in.This book will help you, as a Python developer, to start using Rust in your Python projects without having to manage a separate Rust server or application. Seeing as you'll already understand concepts like functions and loops, this book covers the quirks of Rust such as memory management to code Rust in a productive and structured manner. You'll explore the PyO3 crate to fuse Rust code with Python, learn how to package your fused Rust code in a pip package, and then deploy a Python Flask application in Docker that uses a private Rust pip module. Finally, you'll get to grips with advanced Rust binding topics such as inspecting Python objects and modules in Rust.By the end of this Rust book, you'll be able to develop safe and high-performant applications with better concurrency support.What you will learn• Explore the quirks of the Rust programming language that a Python developer needs to understand to code in Rust• Understand the trade-offs for multiprocessing and thread safety to write concurrent code• Build and manage a software project with cargo and crates• Fuse Rust code with Python so that Python can import and run Rust code• Deploy a Python Flask application in Docker that utilizes a private Rust pip module• Inspect and create your own Python objects in RustWho this book is forThis book is for Python developers who want to speed up their Python code with Rust and implement Rust in a Python system without altering the entire system. You'll be able to learn about all topics relating to Rust programming. Basic knowledge of Python is required to get the most out of this book.
Frequently asked questions
- Essential is ideal for learners and professionals who enjoy exploring a wide range of subjects. Access the Essential Library with 800,000+ trusted titles and best-sellers across business, personal growth, and the humanities. Includes unlimited reading time and Standard Read Aloud voice.
- Complete: Perfect for advanced learners and researchers needing full, unrestricted access. Unlock 1.4M+ books across hundreds of subjects, including academic and specialized titles. The Complete Plan also includes advanced features like Premium Read Aloud and Research Assistant.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app.
Information
Table of contents
- Speed Up Your Python with Rust
- Contributors
- Preface
- Section 1: Getting to Understand Rust
- Chapter 1: An Introduction to Rust from a Python Perspective
- Chapter 2: Structuring Code in Rust
- Chapter 3: Understanding Concurrency
- Section 2: Fusing Rust with Python
- Chapter 4: Building pip Modules in Python
- Chapter 5: Creating a Rust Interface for Our pip Module
- Chapter 6: Working with Python Objects in Rust
- Chapter 7: Using Python Modules with Rust
- Chapter 8: Structuring an End-to-End Python Package in Rust
- Section 3: Infusing Rust into a Web Application
- Chapter 9: Structuring a Python Flask App for Rust
- Chapter 10: Injecting Rust into a Python Flask App
- Chapter 11: Best Practices for Integrating Rust
- Other Books You May Enjoy