Photo 1 sur 1

Galerie
Photo 1 sur 1

Vous en avez un à vendre?
Python Concurrency avec asyncio - Broché, par Fowler Matthew - Bon état
43,20 $US
Environ59,36 $C
État :
Bon
Un livre qui a été lu, mais qui est en bon état. La couverture présente des dommages infimes, par exemple des éraflures, mais aucun trou ni aucune déchirure. Dans le cas des livres à reliure, la jaquette peut ne pas être incluse. La reliure présente des traces d'usure minimes. La plupart des pages ne sont pas endommagées et les plis, les déchirures, les passages soulignés ou surlignés et les inscriptions en marge sont minimes. Il n'y a aucune page manquante.
Oops! Looks like we're having trouble connecting to our server.
Refresh your browser window to try again.
Expédition :
Sans frais USPS Media MailTM.
Lieu : Philadelphia, Pennsylvania, États-Unis
Livraison :
Livraison prévue entre le lun. 11 août et le ven. 15 août à 94104
Renvois :
Renvoi sous 30 jours. Le vendeur paie les frais de renvoi.
Paiements :
Magasinez en toute confiance
Le vendeur assume l'entière responsabilité de cette annonce.
Numéro de l'objet eBay :406013304549
Dernière mise à jour : août 07, 2025 02:40:30 HAEAfficher toutes les modificationsAfficher toutes les modifications
Caractéristiques de l'objet
- État
- Book Title
- Python Concurrency with asyncio
- ISBN
- 9781617298660
À propos de ce produit
Product Identifiers
Publisher
Manning Publications Co. LLC
ISBN-10
1617298662
ISBN-13
9781617298660
eBay Product ID (ePID)
10050392382
Product Key Features
Number of Pages
376 Pages
Language
English
Publication Name
Python Concurrency with Asyncio
Subject
Software Development & Engineering / General, Web / Web Services & APIs, General, Programming Languages / Python
Publication Year
2022
Type
Textbook
Subject Area
Mathematics, Computers
Format
Trade Paperback
Dimensions
Item Height
0.3 in
Item Weight
24.3 Oz
Item Length
9.2 in
Item Width
7.4 in
Additional Product Features
LCCN
2022-288088
Reviews
"Read this to write better, faster, leaner Python services!" Dimitrios Kouzis-Loukas " Do you want to understand Concurrency in Python? Because you've been doing it wrong." Didier Garcia "Understanding the information in this book would make all of us better Python programmers." Charles M. Shelton "This is one of the best technical books I've ever read. The writing is so good, and it covers an incredible amount of knowledge. Hands down, this is the best reference material on using asyncio anywhere." Kent R. Spillner "The book is excellent, I really liked the author's approach and the examples that were brought to explain the concepts." William Jamir Silva "Even if you think you know asyncio then you should read this book to find out about the parts that you actually knew nothing about!" Richard Vaughan
Dewey Edition
23
Illustrated
Yes
Dewey Decimal
005.1
Synopsis
It's easy to overload standard Python and watch your pro-grams slow to a crawl. The asyncio library was built to solve these problems by making it easy to divide and schedule tasks. It seamlessly handles multiple operations concurrently, leading to apps that are lightning fast and scalable. Python Concurrency with asyncio introduces asynchronous, parallel, and concurrent programming through hands-on Python examples. Hard-to-grok concurrency topics are broken down into simple flowcharts that make it easy to see how your tasks are running. You'll learn how to overcome the limitations of Python using asyncio to speed up slow web servers and microservices. You'll even combine asyncio with traditional multiprocessing techniques for huge improvements to performance. What's Inside, Build web APIs and make concurrency web requests with aiohttp, Run thousands of SQL queries concurrently, Create a map-reduce job that can process gigabytes of data concurrently, Use threading with asyncio to mix blocking code with asyncio code, For intermediate Python programmers. No previous experience of concurrency required. Book jacket., "This is one of the best technical books I've ever read. The writing is so good, and it covers an incredible amount of knowledge. Hands down, this is the best reference material on using asyncio anywhere." - Kent R. Spillner Learn how to speed up slow Python code with concurrent programming and the cutting-edge asyncio library. Python is flexible, versatile, and easy to learn. It can also be very slow compared to lower-level languages. Python Concurrency with asyncio teaches you how to boost Python's performance by applying a variety of concurrency techniques. You'll learn how the complex-but-powerful asyncio library can achieve concurrency with just a single thread and use asyncio's APIs to run multiple web requests and database queries simultaneously. The book covers using asyncio with the entire Python concurrency landscape, including multiprocessing and multithreading. about the technology The time demands of running code synchronously quickly overload standard Python and slow your programs to a crawl. Python's Asynchronous I/O library asyncio was built to solve these performance problems by making it easy to divide and schedule computational tasks so they can be run independently. asyncio concurrently handles multiple operations without a drop in throughput or responsiveness, making your apps lightning fast and easier to scale. about the book Python Concurrency with asyncio teaches you to write concurrent Python code that will boost the speed of your apps and APIs. The book demystifies asynchio's unique single-threaded concurrency model, giving you a behind-the-scenes understanding of the library and its new async/await syntax. Hard-to-grok concurrency topics are broken down into simple flowcharts so you can easily see how your coroutines and tasks are running. You'll learn to apply asyncio to solve common performance problems, such as batch database jobs, slow web servers, and scaling microservices. All examples you'll build are designed to be usable in the real world, including a clever command line SQL client that can run multiple slow queries at the same time. By the time you're done, you'll even be able to combine asyncio with traditional multiprocessing and multithreading techniques for huge improvements to performance. what's inside Use coroutines and tasks alongside async/await syntax to run code concurrently Build web APIs and make concurrency web requests with aiohttp Run thousands of SQL queries concurrently Create a map-reduce job that can process gigabytes of data concurrently Use threading with asyncio to mix blocking code with asyncio code about the reader For intermediate Python programmers. No previous experience of concurrency required. about the author Matthew Fowler has over 15 years of software engineering experience in roles from architect to engineering director. He has worked on Python codebases in the machine learning space, as well as led development of a Python-based ecommerce site with tens of millions of users., Learn how to speed up slow Python code with concurrent programming and the cutting-edge asyncio library. Python is flexible, versatile, and easy to learn. It can also be very slow compared to lower-level languages. Python Concurrency with asyncio teaches you how to boost Python's performance by applying a variety of concurrency techniques. You'll learn how the complex-but-powerful asyncio library can achieve concurrency with just a single thread and use asyncio's APIs to run multiple web requests and database queries simultaneously. The book covers using asyncio with the entire Python concurrency landscape, including multiprocessing and multithreading., Learn how to speed up slow Python code with concurrent programming and the cutting-edge asyncio library. Use coroutines and tasks alongside async/await syntax to run code concurrently Build web APIs and make concurrency web requests with aiohttp Run thousands of SQL queries concurrently Create a map-reduce job that can process gigabytes of data concurrently Use threading with asyncio to mix blocking code with asyncio code Python is flexible, versatile, and easy to learn. It can also be very slow compared to lower-level languages. Python Concurrency with asyncio teaches you how to boost Python's performance by applying a variety of concurrency techniques. You'll learn how the complex-but-powerful asyncio library can achieve concurrency with just a single thread and use asyncio's APIs to run multiple web requests and database queries simultaneously. The book covers using asyncio with the entire Python concurrency landscape, including multiprocessing and multithreading. Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications. About the technology It's easy to overload standard Python and watch your programs slow to a crawl. Th e asyncio library was built to solve these problems by making it easy to divide and schedule tasks. It seamlessly handles multiple operations concurrently, leading to apps that are lightning fast and scalable. About the book Python Concurrency with asyncio introduces asynchronous, parallel, and concurrent programming through hands-on Python examples. Hard-to-grok concurrency topics are broken down into simple flowcharts that make it easy to see how your tasks are running. You'll learn how to overcome the limitations of Python using asyncio to speed up slow web servers and microservices. You'll even combine asyncio with traditional multiprocessing techniques for huge improvements to performance. What's inside Build web APIs and make concurrency web requests with aiohttp Run thousands of SQL queries concurrently Create a map-reduce job that can process gigabytes of data concurrently Use threading with asyncio to mix blocking code with asyncio code About the reader For intermediate Python programmers. No previous experience of concurrency required. About the author Matthew Fowler has over 15 years of software engineering experience in roles from architect to engineering director. Table of Contents 1 Getting to know asyncio 2 asyncio basics 3 A first asyncio application 4 Concurrent web requests 5 Non-blocking database drivers 6 Handling CPU-bound work 7 Handling blocking work with threads 8 Streams 9 Web applications 10 Microservices 11 Synchronization 12 Asynchronous queues 13 Managing subprocesses 14 Advanced asyncio
LC Classification Number
QA76.76.A63
Description de l'objet du vendeur
Catégories populaires de cette Boutique
Évaluations comme vendeur (176 030)
- c***m (422)- Évaluation laissée par l'acheteur.Six derniers moisAchat vérifiéWOW!; I cannot believe this 4 Days to Hawaii! ; AAA+++; Excellent Service; Great Pricing; Fast Delivery-Faster Than Expected to Hawaii!; Shipped 04/19, Sat, Received 04/24 Thur to Hawaii using free shipping; USPS Ground Mail, Paperback Book in Good Condition--Better Than Described ; TLC Packaging; Excellent Seller Communication, Sends updates . Highly Recommended!, Thank you very much!The Great Crash, 1929 - Paperback, by J K Galbraith - Acceptable (#125958575357)
- f***f (1595)- Évaluation laissée par l'acheteur.Dernier moisAchat vérifiéExcellent Seller, Goes the Extra Mile. The Seller Was Incredibly Communicative. Smooth Transaction, Shipped Very Quickly, As Advertised; Good Price; Well Packaged & Delivered Within a Few Days. Item in Described Promised Condition, Thank You Very Much!!!!!!!!!!! A+
- i***9 (8)- Évaluation laissée par l'acheteur.Dernier moisAchat vérifiéI appreciate the deal I was able to get on both books I ordered. They came as pictured and described in the listing and look good! My only complaint is the packaging could be better, I got two paperback books that were not shipped in a box but rather and envelope and one of the covers arrived bent. So I would recommend the seller use bubblewrap or a box to ship future orders.