Lets create a Queue System: Queue system are heavily used in Goverment institutions, airports, banks and many other venues looking to organize the incoming traffic. Queue systems can also be used to load balancing for different applications like:
- Stablishing priorities in web servers incoming requests.
- Inmigration and visa applicantions that need to be prioritized.
- Network packages.
- etc.
A queue is just a list of elements that must be process an a particular order: FIFO and FILO.
Today we are going to build a Queue system with FIFO approach for restorants: If a new clients arrives to the restorant it gets added into a queue, when it is his time to eat, he gets notified by email.
- Clone the following boilerplate
- Install dependency packages
$ pipenv install - Get inside the environment by typing
$ pipenv shell - You can run the current project by typing
$ python src/app.py - Start coding! Update the app.py file to allow the user to manage a simple Queue: Add a person, Remove person, get current line (queue).
- The application also needs to be able to export the queue to a file named
queue.json. - The application must integrate with the twilio API to send an SMS every time a phone number is dequeued.
- Use the following data-structure to implement the queue:
class Queue:
def __init__(self, mode, current_queue=[]):
self.queue = current_queue
# depending on the _mode, the queue has to behave like a FIFO or LIFO
if mode is None:
raise "Please specify a queue mode FIFO or LIFO"
else:
self.mode = mode
def enqueue(self, item):
pass
def dequeue(self):
pass
def get_queue(self):
pass
def size(self):
return len(self.queue) - The CLI show the menu, and the user selects the option to add "Bob" into the queue.
- The application ads Bob and notifies confirmation on the console and must say how many people are in front of him on the line.
- The system now shows the menu (starts again) awaiting for the user to pick another option.
- If the user picks the option to remove from the Queue, the next person on the queue gets eliminated and confirmation message shows.
- The user must receive an SMS when it is his/her time to eat.
- If the user picks to see the entire queue state, a list of everyone gets printed with their respective position in the queue.
- If the user picks to export entire queue, a JSON file with a list of everyone gets created.
This exercise will make you practice the following fundamentals:
- Executing python files from the command line.
- Get user input from the command line.
- Loops, conditionals and functions.
- Using plain-text files to store data.
- Complex Data Structures.
- Queue (FIFO vs FILO)
- SMS.