Skip to content

📅 REST API made on Python with Flask framework by JetBrains Academy's Python Developer course

Notifications You must be signed in to change notification settings

h4cktivist/web-calendar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

web-calendar

📅 Simple RESTful Web Calendar made on Python with Flask framework by JetBrains Academy's Python Developer course

With this app you can:

  1. Create new event in your calendar (by POST on api/event)
  2. Get all events or just single event by it's ID (by GET on api/event or api/event/id for single)
  3. Get all events by date range (by set params start_time and end_time to /event)
  4. Get all todays events (by GET on api/event/today)
  5. Delete single event using it's ID (by DELETE on api/event/id)
  6. Update single event using it's ID (by PUT on api/event/id)

Install

git clone https://github.com/h4cktivist/web-calendar.git
cd web-calendar
pip install -r requirements.txt

Run

cd web-calendar
python app.py

or just (if Python is added to your PATH)

cd web-calendar
app.py

About

📅 REST API made on Python with Flask framework by JetBrains Academy's Python Developer course

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages