Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/c0mput3r5c13nt15t/python-radicale-busy-calendar
https://github.com/c0mput3r5c13nt15t/python-radicale-busy-calendar
calendar python radicale-caldav
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/c0mput3r5c13nt15t/python-radicale-busy-calendar
- Owner: c0mput3r5c13nt15t
- Created: 2024-09-17T22:45:01.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-18T12:14:24.000Z (4 months ago)
- Last Synced: 2024-10-18T12:56:49.780Z (3 months ago)
- Topics: calendar, python, radicale-caldav
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Radicale Python Free/Busy Calendar
`gunicorn -c gunicorn_config.py main:app`
## How it works
- A liile bit hacky: readys the radicale collections
- Combines into a single calendar with "Busy" as attribute
- Serves the calendar## Limitations
- Quick and dirty POC
- Not performant## Caddy
- More secure behind reverse proxy
```json
{
"match": [
{
"host": ["busy.paulmaier.online"]
}
],
"handle": [
{
"handler": "subroute",
"routes": [
{
"handle": [
{
"handler": "reverse_proxy",
"transport": {
"protocol": "http"
},
"upstreams": [
{
"dial": "127.0.0.1:8080"
}
]
}
]
}
]
}
],
"terminal": true
},
```