A basic app for testing and learning purpose
A basic booking API for ordering books.
├── app # The app
│ ├── __init__.py # Python init file
│ ├── models.py # data model for books, clients, and books
│ ├── routes.py # API routes
│ ├── services.py # Logic for booking
│ ├── database.py # database access
│ ├── config.py # app configuration
│ └── utils.py # global utils
├── LICENSE
├── poetry.lock
├── pyproject.toml
├── README.md
└── tests
├── test_books.py # testing books
├── test_clients.py # testing clients
└── test_reservations.py # testing booking