https://github.com/bravo68web/flask-api-intro
FastAPI Usage Intro
https://github.com/bravo68web/flask-api-intro
api flask rest-api
Last synced: about 2 months ago
JSON representation
FastAPI Usage Intro
- Host: GitHub
- URL: https://github.com/bravo68web/flask-api-intro
- Owner: BRAVO68WEB
- Created: 2021-08-19T06:57:03.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-08-19T06:57:21.000Z (almost 5 years ago)
- Last Synced: 2025-05-16T20:42:14.344Z (about 1 year ago)
- Topics: api, flask, rest-api
- Language: Python
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Introduction to Flask API
Learned about [Flask REST API](https://flask-restful.readthedocs.io/en/latest/), is an extension for Flask that adds support for quickly building REST APIs in Python
### Features
* Efficient
* Slow Reload
* Simple to understand and Implemet
## Installation
```bash
pip3 install -r requirements.txt
```
## Usage
```bash
uvicorn main:app --reload
```
Visit [http://127.0.0.1:5000/](http://127.0.0.1:5000/) to Explore