📅 Simple RESTful Web Calendar made on Python with Flask framework by JetBrains Academy's Python Developer course
- Create new event in your calendar (by POST on
api/event
) - Get all events or just single event by it's ID (by GET on
api/event
orapi/event/id
for single) - Get all events by date range (by set params
start_time
andend_time
to/event
) - Get all todays events (by GET on
api/event/today
) - Delete single event using it's ID (by DELETE on
api/event/id
) - Update single event using it's ID (by PUT on
api/event/id
)
git clone https://github.com/h4cktivist/web-calendar.git
cd web-calendar
pip install -r requirements.txt
cd web-calendar
python app.py
or just (if Python is added to your PATH)
cd web-calendar
app.py