Backend¶
Features¶
-
Room booking with optional title for each booking
Requirements¶
TODO
Installation¶
You can install Backend via pip from PyPI:
$ pip install backend
Booking Model¶
The
Booking
model supports the following fields:
-
id: Unique identifier (auto-incremented) -
room_id: The ID of the associated room -
start_time: Start time of the booking -
end_time: End time of the booking -
title: (Optional) A title for the booking
You can provide a
title
when creating or updating a booking. If omitted, the booking
will have no title.
Usage¶
Please see the Command-line Reference for details.
Contributing¶
Contributions are very welcome. To learn more, see the Contributor Guide.
License¶
Distributed under the terms of the MIT license, Backend is free and open source software.
Issues¶
If you encounter any problems, please file an issue along with a detailed description.
Credits¶
This project was generated from @cjolowicz’s Hypermodern Python Cookiecutter template.