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
- Host: GitHub
- URL: https://github.com/jod35/flask-restx-basic
- Owner: jod35
- Created: 2021-01-13T11:01:58.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-13T11:09:15.000Z (over 5 years ago)
- Last Synced: 2025-10-20T06:48:15.763Z (9 months ago)
- Topics: flask, flask-restx, flask-sqlalchemy, swagger-ui
- Language: Python
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 `