SPEED UP YOUR PYTHON WITH RUST: optimize python performance by creating python pip modules in rust.
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 featur...
Gespeichert in:
1. Verfasser: | |
---|---|
Format: | Elektronisch E-Book |
Sprache: | English |
Veröffentlicht: |
[S.l.] :
PACKT PUBLISHING LIMITED,
2022.
|
Schlagworte: | |
Online-Zugang: | Volltext |
Zusammenfassung: | 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. |
Beschreibung: | 1 online resource |
ISBN: | 9781801812320 1801812322 |
Internformat
MARC
LEADER | 00000cam a22000007a 4500 | ||
---|---|---|---|
001 | ZDB-4-EBA-on1289988148 | ||
003 | OCoLC | ||
005 | 20241004212047.0 | ||
006 | m o d | ||
007 | cr |n||||||||| | ||
008 | 211224s2022 xx o 0|| 0 eng d | ||
040 | |a YDX |b eng |c YDX |d ORMDA |d UKAHL |d UKMGB |d OCLCO |d OCLCF |d N$T |d OCLCQ |d IEEEE |d OCLCO |d OCLCL | ||
015 | |a GBC1L0207 |2 bnb | ||
016 | 7 | |a 020426529 |2 Uk | |
019 | |a 1289870514 |a 1289921944 |a 1289940998 |a 1294296236 | ||
020 | |a 9781801812320 |q (electronic bk.) | ||
020 | |a 1801812322 |q (electronic bk.) | ||
020 | |z 180181144X | ||
020 | |z 9781801811446 | ||
035 | |a (OCoLC)1289988148 |z (OCoLC)1289870514 |z (OCoLC)1289921944 |z (OCoLC)1289940998 |z (OCoLC)1294296236 | ||
037 | |a 9781801811446 |b O'Reilly Media | ||
037 | |a 10163195 |b IEEE | ||
050 | 4 | |a QA76.73.P98 |b F55 2022eb | |
082 | 7 | |a 005.13/3 |2 23 | |
049 | |a MAIN | ||
100 | 1 | |a FLITTON, MAXWELL. | |
245 | 1 | 0 | |a SPEED UP YOUR PYTHON WITH RUST |h [electronic resource] : |b optimize python performance by creating python pip modules in rust. |
260 | |a [S.l.] : |b PACKT PUBLISHING LIMITED, |c 2022. | ||
300 | |a 1 online resource | ||
336 | |a text |2 rdacontent | ||
337 | |a computer |2 rdamedia | ||
338 | |a online resource |2 rdacarrier | ||
520 | |a 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. | ||
505 | 0 | |a Table of Contents An Introduction to Rust Structuring Code in Rust Concurrency in Rust Building Private pip Modules in Python Creating a Rust Interface for Your pip Module Working with Python Objects in Rust Using Python Modules in Rust Structuring an End-to-End Python Module in Rust Structuring a Python Flask App for Rust Injecting Rust into a Python Flask App Best Practices. | |
650 | 0 | |a Python (Computer program language) |0 http://id.loc.gov/authorities/subjects/sh96008834 | |
650 | 0 | |a Rust (Computer program language) |0 http://id.loc.gov/authorities/subjects/sh2018000672 | |
650 | 6 | |a Python (Langage de programmation) | |
650 | 6 | |a Rust (Langage de programmation) | |
650 | 7 | |a Python (Computer program language) |2 fast | |
650 | 7 | |a Rust (Computer program language) |2 fast | |
758 | |i has work: |a SPEED UP YOUR PYTHON WITH RUST (Text) |1 https://id.oclc.org/worldcat/entity/E39PCXg38jXtFxQyrqRRb3rgDm |4 https://id.oclc.org/worldcat/ontology/hasWork | ||
776 | 0 | 8 | |i Print version: |z 9781801812320 |
776 | 0 | 8 | |i Print version: |z 180181144X |z 9781801811446 |w (OCoLC)1285569217 |
856 | 4 | 0 | |l FWS01 |p ZDB-4-EBA |q FWS_PDA_EBA |u https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=3125155 |3 Volltext |
938 | |a YBP Library Services |b YANK |n 302651694 | ||
938 | |a Askews and Holts Library Services |b ASKH |n AH39547159 | ||
938 | |a EBSCOhost |b EBSC |n 3125155 | ||
994 | |a 92 |b GEBAY | ||
912 | |a ZDB-4-EBA | ||
049 | |a DE-863 |
Datensatz im Suchindex
DE-BY-FWS_katkey | ZDB-4-EBA-on1289988148 |
---|---|
_version_ | 1816882554437894144 |
adam_text | |
any_adam_object | |
author | FLITTON, MAXWELL |
author_facet | FLITTON, MAXWELL |
author_role | |
author_sort | FLITTON, MAXWELL |
author_variant | m f mf |
building | Verbundindex |
bvnumber | localFWS |
callnumber-first | Q - Science |
callnumber-label | QA76 |
callnumber-raw | QA76.73.P98 F55 2022eb |
callnumber-search | QA76.73.P98 F55 2022eb |
callnumber-sort | QA 276.73 P98 F55 42022EB |
callnumber-subject | QA - Mathematics |
collection | ZDB-4-EBA |
contents | Table of Contents An Introduction to Rust Structuring Code in Rust Concurrency in Rust Building Private pip Modules in Python Creating a Rust Interface for Your pip Module Working with Python Objects in Rust Using Python Modules in Rust Structuring an End-to-End Python Module in Rust Structuring a Python Flask App for Rust Injecting Rust into a Python Flask App Best Practices. |
ctrlnum | (OCoLC)1289988148 |
dewey-full | 005.13/3 |
dewey-hundreds | 000 - Computer science, information, general works |
dewey-ones | 005 - Computer programming, programs, data, security |
dewey-raw | 005.13/3 |
dewey-search | 005.13/3 |
dewey-sort | 15.13 13 |
dewey-tens | 000 - Computer science, information, general works |
discipline | Informatik |
format | Electronic eBook |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>05200cam a22005417a 4500</leader><controlfield tag="001">ZDB-4-EBA-on1289988148</controlfield><controlfield tag="003">OCoLC</controlfield><controlfield tag="005">20241004212047.0</controlfield><controlfield tag="006">m o d </controlfield><controlfield tag="007">cr |n|||||||||</controlfield><controlfield tag="008">211224s2022 xx o 0|| 0 eng d</controlfield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">YDX</subfield><subfield code="b">eng</subfield><subfield code="c">YDX</subfield><subfield code="d">ORMDA</subfield><subfield code="d">UKAHL</subfield><subfield code="d">UKMGB</subfield><subfield code="d">OCLCO</subfield><subfield code="d">OCLCF</subfield><subfield code="d">N$T</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">IEEEE</subfield><subfield code="d">OCLCO</subfield><subfield code="d">OCLCL</subfield></datafield><datafield tag="015" ind1=" " ind2=" "><subfield code="a">GBC1L0207</subfield><subfield code="2">bnb</subfield></datafield><datafield tag="016" ind1="7" ind2=" "><subfield code="a">020426529</subfield><subfield code="2">Uk</subfield></datafield><datafield tag="019" ind1=" " ind2=" "><subfield code="a">1289870514</subfield><subfield code="a">1289921944</subfield><subfield code="a">1289940998</subfield><subfield code="a">1294296236</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9781801812320</subfield><subfield code="q">(electronic bk.)</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">1801812322</subfield><subfield code="q">(electronic bk.)</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="z">180181144X</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="z">9781801811446</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)1289988148</subfield><subfield code="z">(OCoLC)1289870514</subfield><subfield code="z">(OCoLC)1289921944</subfield><subfield code="z">(OCoLC)1289940998</subfield><subfield code="z">(OCoLC)1294296236</subfield></datafield><datafield tag="037" ind1=" " ind2=" "><subfield code="a">9781801811446</subfield><subfield code="b">O'Reilly Media</subfield></datafield><datafield tag="037" ind1=" " ind2=" "><subfield code="a">10163195</subfield><subfield code="b">IEEE</subfield></datafield><datafield tag="050" ind1=" " ind2="4"><subfield code="a">QA76.73.P98</subfield><subfield code="b">F55 2022eb</subfield></datafield><datafield tag="082" ind1="7" ind2=" "><subfield code="a">005.13/3</subfield><subfield code="2">23</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">MAIN</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">FLITTON, MAXWELL.</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">SPEED UP YOUR PYTHON WITH RUST</subfield><subfield code="h">[electronic resource] :</subfield><subfield code="b">optimize python performance by creating python pip modules in rust.</subfield></datafield><datafield tag="260" ind1=" " ind2=" "><subfield code="a">[S.l.] :</subfield><subfield code="b">PACKT PUBLISHING LIMITED,</subfield><subfield code="c">2022.</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">1 online resource</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="a">text</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="a">computer</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="a">online resource</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="520" ind1=" " ind2=" "><subfield code="a">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.</subfield></datafield><datafield tag="505" ind1="0" ind2=" "><subfield code="a">Table of Contents An Introduction to Rust Structuring Code in Rust Concurrency in Rust Building Private pip Modules in Python Creating a Rust Interface for Your pip Module Working with Python Objects in Rust Using Python Modules in Rust Structuring an End-to-End Python Module in Rust Structuring a Python Flask App for Rust Injecting Rust into a Python Flask App Best Practices.</subfield></datafield><datafield tag="650" ind1=" " ind2="0"><subfield code="a">Python (Computer program language)</subfield><subfield code="0">http://id.loc.gov/authorities/subjects/sh96008834</subfield></datafield><datafield tag="650" ind1=" " ind2="0"><subfield code="a">Rust (Computer program language)</subfield><subfield code="0">http://id.loc.gov/authorities/subjects/sh2018000672</subfield></datafield><datafield tag="650" ind1=" " ind2="6"><subfield code="a">Python (Langage de programmation)</subfield></datafield><datafield tag="650" ind1=" " ind2="6"><subfield code="a">Rust (Langage de programmation)</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">Python (Computer program language)</subfield><subfield code="2">fast</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">Rust (Computer program language)</subfield><subfield code="2">fast</subfield></datafield><datafield tag="758" ind1=" " ind2=" "><subfield code="i">has work:</subfield><subfield code="a">SPEED UP YOUR PYTHON WITH RUST (Text)</subfield><subfield code="1">https://id.oclc.org/worldcat/entity/E39PCXg38jXtFxQyrqRRb3rgDm</subfield><subfield code="4">https://id.oclc.org/worldcat/ontology/hasWork</subfield></datafield><datafield tag="776" ind1="0" ind2="8"><subfield code="i">Print version:</subfield><subfield code="z">9781801812320</subfield></datafield><datafield tag="776" ind1="0" ind2="8"><subfield code="i">Print version:</subfield><subfield code="z">180181144X</subfield><subfield code="z">9781801811446</subfield><subfield code="w">(OCoLC)1285569217</subfield></datafield><datafield tag="856" ind1="4" ind2="0"><subfield code="l">FWS01</subfield><subfield code="p">ZDB-4-EBA</subfield><subfield code="q">FWS_PDA_EBA</subfield><subfield code="u">https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=3125155</subfield><subfield code="3">Volltext</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">YBP Library Services</subfield><subfield code="b">YANK</subfield><subfield code="n">302651694</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">Askews and Holts Library Services</subfield><subfield code="b">ASKH</subfield><subfield code="n">AH39547159</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">EBSCOhost</subfield><subfield code="b">EBSC</subfield><subfield code="n">3125155</subfield></datafield><datafield tag="994" ind1=" " ind2=" "><subfield code="a">92</subfield><subfield code="b">GEBAY</subfield></datafield><datafield tag="912" ind1=" " ind2=" "><subfield code="a">ZDB-4-EBA</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-863</subfield></datafield></record></collection> |
id | ZDB-4-EBA-on1289988148 |
illustrated | Not Illustrated |
indexdate | 2024-11-27T13:30:28Z |
institution | BVB |
isbn | 9781801812320 1801812322 |
language | English |
oclc_num | 1289988148 |
open_access_boolean | |
owner | MAIN DE-863 DE-BY-FWS |
owner_facet | MAIN DE-863 DE-BY-FWS |
physical | 1 online resource |
psigel | ZDB-4-EBA |
publishDate | 2022 |
publishDateSearch | 2022 |
publishDateSort | 2022 |
publisher | PACKT PUBLISHING LIMITED, |
record_format | marc |
spelling | FLITTON, MAXWELL. SPEED UP YOUR PYTHON WITH RUST [electronic resource] : optimize python performance by creating python pip modules in rust. [S.l.] : PACKT PUBLISHING LIMITED, 2022. 1 online resource text rdacontent computer rdamedia online resource rdacarrier 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. Table of Contents An Introduction to Rust Structuring Code in Rust Concurrency in Rust Building Private pip Modules in Python Creating a Rust Interface for Your pip Module Working with Python Objects in Rust Using Python Modules in Rust Structuring an End-to-End Python Module in Rust Structuring a Python Flask App for Rust Injecting Rust into a Python Flask App Best Practices. Python (Computer program language) http://id.loc.gov/authorities/subjects/sh96008834 Rust (Computer program language) http://id.loc.gov/authorities/subjects/sh2018000672 Python (Langage de programmation) Rust (Langage de programmation) Python (Computer program language) fast Rust (Computer program language) fast has work: SPEED UP YOUR PYTHON WITH RUST (Text) https://id.oclc.org/worldcat/entity/E39PCXg38jXtFxQyrqRRb3rgDm https://id.oclc.org/worldcat/ontology/hasWork Print version: 9781801812320 Print version: 180181144X 9781801811446 (OCoLC)1285569217 FWS01 ZDB-4-EBA FWS_PDA_EBA https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=3125155 Volltext |
spellingShingle | FLITTON, MAXWELL SPEED UP YOUR PYTHON WITH RUST optimize python performance by creating python pip modules in rust. Table of Contents An Introduction to Rust Structuring Code in Rust Concurrency in Rust Building Private pip Modules in Python Creating a Rust Interface for Your pip Module Working with Python Objects in Rust Using Python Modules in Rust Structuring an End-to-End Python Module in Rust Structuring a Python Flask App for Rust Injecting Rust into a Python Flask App Best Practices. Python (Computer program language) http://id.loc.gov/authorities/subjects/sh96008834 Rust (Computer program language) http://id.loc.gov/authorities/subjects/sh2018000672 Python (Langage de programmation) Rust (Langage de programmation) Python (Computer program language) fast Rust (Computer program language) fast |
subject_GND | http://id.loc.gov/authorities/subjects/sh96008834 http://id.loc.gov/authorities/subjects/sh2018000672 |
title | SPEED UP YOUR PYTHON WITH RUST optimize python performance by creating python pip modules in rust. |
title_auth | SPEED UP YOUR PYTHON WITH RUST optimize python performance by creating python pip modules in rust. |
title_exact_search | SPEED UP YOUR PYTHON WITH RUST optimize python performance by creating python pip modules in rust. |
title_full | SPEED UP YOUR PYTHON WITH RUST [electronic resource] : optimize python performance by creating python pip modules in rust. |
title_fullStr | SPEED UP YOUR PYTHON WITH RUST [electronic resource] : optimize python performance by creating python pip modules in rust. |
title_full_unstemmed | SPEED UP YOUR PYTHON WITH RUST [electronic resource] : optimize python performance by creating python pip modules in rust. |
title_short | SPEED UP YOUR PYTHON WITH RUST |
title_sort | speed up your python with rust optimize python performance by creating python pip modules in rust |
title_sub | optimize python performance by creating python pip modules in rust. |
topic | Python (Computer program language) http://id.loc.gov/authorities/subjects/sh96008834 Rust (Computer program language) http://id.loc.gov/authorities/subjects/sh2018000672 Python (Langage de programmation) Rust (Langage de programmation) Python (Computer program language) fast Rust (Computer program language) fast |
topic_facet | Python (Computer program language) Rust (Computer program language) Python (Langage de programmation) Rust (Langage de programmation) |
url | https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=3125155 |
work_keys_str_mv | AT flittonmaxwell speedupyourpythonwithrustoptimizepythonperformancebycreatingpythonpipmodulesinrust |