📅 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/eventorapi/event/idfor single) - Get all events by date range (by set params
start_timeandend_timeto/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.txtcd web-calendar
python app.pyor just (if Python is added to your PATH)
cd web-calendar
app.py