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 (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T21:23:17.000Z (almost 2 years ago)
- Last Synced: 2025-01-18T18:46:18.528Z (3 months ago)
- Topics: experiment, flask, flask-sqlalchemy, marshmallow, marshmallow-sqlalchemy, rest-api
- Language: Python
- Size: 9.77 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
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)**