2024-07-17 13:41:01 +00:00
|
|
|
"""# Kobo Calendar Server
|
2023-09-17 20:42:08 +00:00
|
|
|
|
|
|
|
Small calendar web-server pulling from ICAL files, and presenting events in
|
2024-07-17 13:41:01 +00:00
|
|
|
a lightweight HMTL frontend.
|
2023-09-17 20:42:08 +00:00
|
|
|
|
2024-07-17 13:41:01 +00:00
|
|
|
The motivation was to create a lightweight wall calendar to use with an old
|
|
|
|
[Kobo Aura e-reader](https://en.wikipedia.org/wiki/Kobo_Aura), to take
|
|
|
|
advantage of the its e-ink screen, but I had problems getting it to run 24/7.
|
2023-09-17 20:42:08 +00:00
|
|
|
|
|
|
|
## Example usage
|
|
|
|
|
|
|
|
1. Edit `config.py` to include links to your ICAL files. (Google Calendar hidden
|
|
|
|
ICAL links works great here.)
|
|
|
|
2. Launch server using something like: `python main.py --port 8082 --hostname 192.168.87.197`
|
2024-07-17 13:41:01 +00:00
|
|
|
3. Navigate to <http://192.168.87.197:8082>.
|
2023-09-17 20:42:08 +00:00
|
|
|
4. Enjoy
|
2024-07-17 13:41:01 +00:00
|
|
|
"""
|
2023-09-17 20:42:08 +00:00
|
|
|
|
2024-07-17 13:41:01 +00:00
|
|
|
__all__ = ['__version__']
|
2023-09-17 20:42:08 +00:00
|
|
|
|
2024-07-17 13:41:01 +00:00
|
|
|
from _version import __version__
|