
Speed Up Your Python with Rust: Optimize Python performance by creating Python pip modules in Rust with PyO3, (Paperback)
Key item features
- Speed Up Your Python with Rust: Optimize Python performance by creating Python pip modules in Rust with PyO3, (Paperback)
- Author: Packt Publishing
- ISBN: 9781801811446
- Format: Paperback
- Publication Date: 2022-01-21
- Page Count: 384
Specs
- Book formatPaperback
- Fiction/nonfictionNon-Fiction
- GenreComputing & Internet
- Publication dateJanuary, 2022
- Pages384
- SubgenreLanguages
- Free shipping
Free 90-day returns
How do you want your item?
Get 50% off a year of Walmart+
Similar items you might like
Python 3.6 C API (Paperback) $28.63
$2863current price $28.63Python 3.6 C API (Paperback)
Mastering Python Networking - Third Edition: Your one-stop solution to using Python for network automation, programmabil, (Paperback) $89.51
$8951current price $89.51Mastering Python Networking - Third Edition: Your one-stop solution to using Python for network automation, programmabil, (Paperback)
15 out of 5 Stars. 1 reviewsProgramming Microcontrollers with Python: Experience the Power of Embedded Python, (Paperback) $40.24
$4024current price $40.24Programming Microcontrollers with Python: Experience the Power of Embedded Python, (Paperback)
Mastering Python Design Patterns - Third Edition: Craft essential Python patterns by following core design principles, (Paperback) $40.55
$4055current price $40.55Mastering Python Design Patterns - Third Edition: Craft essential Python patterns by following core design principles, (Paperback)
Python in Practice Python in Practice - Volume II: Beyond the Basics: Advanced Language Features in Python, Book 2, (Paperback) $23.60
$2360current price $23.60Python in Practice Python in Practice - Volume II: Beyond the Basics: Advanced Language Features in Python, Book 2, (Paperback)
Using Asyncio in Python: Understanding Python's Asynchronous Programming Features (Paperback) $35.29
$3529current price $35.29Using Asyncio in Python: Understanding Python's Asynchronous Programming Features (Paperback)
Learning Python Python: A Beginners Complete Reference Guide to Learn The Python Programming Language., Book 5, (Paperback) $22.00 Was $25.12
$2200current price $22.00, Was $25.12$25.12Learning Python Python: A Beginners Complete Reference Guide to Learn The Python Programming Language., Book 5, (Paperback)
Python Basics: A Practical Introduction to Python 3, (Paperback) $28.85 Was $39.99
$2885current price $28.85, Was $39.99$39.99Python Basics: A Practical Introduction to Python 3, (Paperback)
Learn Model Context Protocol with Python: Build agentic systems in Python with the new standard for AI capabilities, (Paperback) $44.99
$4499current price $44.99Learn Model Context Protocol with Python: Build agentic systems in Python with the new standard for AI capabilities, (Paperback)
Clean Architecture with Python: Implement scalable and maintainable applications using proven architectural principles, (Paperback) $32.39
$3239current price $32.39Clean Architecture with Python: Implement scalable and maintainable applications using proven architectural principles, (Paperback)
Problem Solving with Python 3.7 Edition: A beginner's guide to Python & open-source programming tools, (Paperback) $36.69
$3669current price $36.69Problem Solving with Python 3.7 Edition: A beginner's guide to Python & open-source programming tools, (Paperback)
Learning Geospatial Analysis with Python - Fourth Edition: Unleash the power of Python 3 with practical techniques for l, (Paperback) $39.99
$3999current price $39.99Learning Geospatial Analysis with Python - Fourth Edition: Unleash the power of Python 3 with practical techniques for l, (Paperback)
Python for Geeks: Build production-ready applications using advanced Python concepts and industry best practices, (Paperback) $43.99
$4399current price $43.99Python for Geeks: Build production-ready applications using advanced Python concepts and industry best practices, (Paperback)
Ultimate Python Programming: Learn Python with 650 Programs, 900 Practice Questions, and 5 Projects, (Paperback) $34.50
$3450current price $34.50Ultimate Python Programming: Learn Python with 650 Programs, 900 Practice Questions, and 5 Projects, (Paperback)
Python Simplified with Generative AI: Hands-on Python development with GenAI tools integrating data science and web inte, (Paperback) $49.50
$4950current price $49.50Python Simplified with Generative AI: Hands-on Python development with GenAI tools integrating data science and web inte, (Paperback)
Parallel Programming with Python: Develop Efficient Parallel Systems Using the Robust Python Environment, (Paperback) $24.99
$2499current price $24.99Parallel Programming with Python: Develop Efficient Parallel Systems Using the Robust Python Environment, (Paperback)
Python Bible for Beginners 2025 Python Bible for Beginners: Python programming: Master Coding Fundamentals and Build Real-World Projects with Ease, Book 1, (Paperback) $19.99
$1999current price $19.99Python Bible for Beginners 2025 Python Bible for Beginners: Python programming: Master Coding Fundamentals and Build Real-World Projects with Ease, Book 1, (Paperback)
Functional Python Programming: Create succint and expressive implementations with functional programming in Python, (Paperback) $54.29
$5429current price $54.29Functional Python Programming: Create succint and expressive implementations with functional programming in Python, (Paperback)
Hypermodern Python Tooling: Building Reliable Workflows for an Evolving Python Ecosystem $37.53
$3753current price $37.53Hypermodern Python Tooling: Building Reliable Workflows for an Evolving Python Ecosystem
Python Performance Tuning: Tricks & Techniken um schnelleren Python Code zu schreiben, (Paperback) $22.97
$2297current price $22.97Python Performance Tuning: Tricks & Techniken um schnelleren Python Code zu schreiben, (Paperback)
About this item
Product details
Discover how to inject your code with highly performant Rust features to develop fast and memory-safe applications
Key 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 code
Book Description:
Python 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 Rust
Who this book is for:
This 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.
- Speed Up Your Python with Rust: Optimize Python performance by creating Python pip modules in Rust with PyO3, (Paperback)
- Author: Packt Publishing
- ISBN: 9781801811446
- Format: Paperback
- Publication Date: 2022-01-21
- Page Count: 384
