Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/the-akira/flask-rest-api
Flask REST API Experiment with Marshmallow and SQLAlchemy
https://github.com/the-akira/flask-rest-api
experiment flask flask-sqlalchemy marshmallow marshmallow-sqlalchemy rest-api
Last synced: about 2 months ago
JSON representation
Flask REST API Experiment with Marshmallow and SQLAlchemy
- Host: GitHub
- URL: https://github.com/the-akira/flask-rest-api
- Owner: the-akira
- Created: 2020-04-10T02:51:51.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-16T00:49:48.000Z (almost 2 years ago)
- Last Synced: 2023-03-03T05:47:19.623Z (almost 2 years ago)
- Topics: experiment, flask, flask-sqlalchemy, marshmallow, marshmallow-sqlalchemy, rest-api
- Language: Python
- Size: 8.79 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flask REST API Experiment
Flask REST API Experiment with Marshmallow and SQLAlchemy
## Features
- Create
- Read
- Update
- Delete## Installation
### Clone the Repository
```
git clone https://github.com/the-akira/Flask-REST-API.git
```### Inside the Main Directory
Create a Virtual Environment
```
python -m venv myvenv
```Activate the Virtual Environment
```
source myvenv/bin/activate
```Install Requirements
```
pip install -r requirements.txt
```Run the Application
```
python run.py
```Make some **[Requests](https://github.com/the-akira/Flask-REST-API/blob/master/requests.md)**