Assignment 1 Asyncoi
Assignment 1 Asyncoi
Python
Objective:
The goal of this assignment is to deepen your understanding of asynchronous
programming in Python using the asyncio library. You will implement various
asynchronous tasks, utilize coroutines, manage the event loop, and demonstrate
your ability to handle I/O-bound operations efficiently.
Assignment Overview:
You will create a Python program that simulates an online bookstore. The program
will:
1. Fetch book details from a list of URLs (simulated API calls).
2. Perform asynchronous operations to simulate order processing.
3. Use the concepts of coroutines, tasks, and the event loop effectively.
Tasks:
1. Set Up Your Environment:
o Ensure you have Python 3.7 or later installed.