Purpose: The BowWowzersDaycare project is a Doggy Daycare Management System implemented in Python dictionaries
Simple Implementation:
- bowwowzers_daycare.py: a simple implementation
- uses dictionaries to add (check in), modify, and remove (check out) dogs in a doggy Daycare
More Complex Implementation:
-
a more complex implementation using dictionaries wrapped in classes
-
doggy_daycare.py: contains the following:
Dog class: represents an individual dog in the Daycare
Daycare class: represents the Doggy doggy_daycare
-
bowwowzers_daycare.py: instantiates objects from the Dog and Daycare classes to implement the BowWowzers Doggie Daycare Management System.