An open API service indexing awesome lists of open source software.

https://github.com/jod35/flask-restx-basic

This is a simple REST API I have built so as to learn how to build RESTful APIs with Flask-RestX
https://github.com/jod35/flask-restx-basic

flask flask-restx flask-sqlalchemy swagger-ui

Last synced: about 2 months ago
JSON representation

This is a simple REST API I have built so as to learn how to build RESTful APIs with Flask-RestX

Awesome Lists containing this project

README

          

# Flask-RestX Demo
This is a simple REST API I built so as to learn Flask-RestX.

## API

| METHOD | ROUTE | DESCRIPTION |
|--------|--------|-------------|
| GET | /todos | get todos |
| GET | /todo/{id} | get a todo with an id |
| POST | /todos | create a todo |
| PUT | /todo/{id} | update a todo with an id |
| DELETE | /todo/{id} | delete a todo with an id |

## DEPENDENCIES
- Python3
- Flask
- FlaskSQLAlchemy

## RUN WITH
` python3 app.py `