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

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

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