From the course: Programming Foundations: Data Structures

Unlock this course with a free trial

Join today to access over 25,300 courses taught by industry experts.

GitHub Codespace challenge: Inventory tracker

GitHub Codespace challenge: Inventory tracker - Python Tutorial

From the course: Programming Foundations: Data Structures

GitHub Codespace challenge: Inventory tracker

(upbeat music) - [Instructor] The last system you'll build is an inventory tracker for managing inventory in a warehouse. You'll integrate a data structure that efficiently keeps track of items and their quantities, enabling real-time updates and management. The system should allow you to add new items to the inventory, update the quantity of existing items, remove items, and view the entire inventory. Each item in the inventory will include a name and a quantity, making it easy to manage and monitor stock levels as items come and go. Like with our previous projects, this program lives in GitHub Code Spaces. The UI will already be implemented, so you shouldn't need to make any changes to the html or css. Instead, you should focus on integrating the data structure at hand within the app.py file. For each to do comment in this file, you should write code that does the corresponding action. Feel free to explore the other files to get a better understanding of how the system works…

Contents