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

https://github.com/raghul-m/crud-rest_api

CRUD REST-API Using Flask Framework, Sqlite and Marshmallow
https://github.com/raghul-m/crud-rest_api

flask flask-api flask-sqlalchemy marshmallow os python

Last synced: about 1 month ago
JSON representation

CRUD REST-API Using Flask Framework, Sqlite and Marshmallow

Awesome Lists containing this project

README

          

# CRUD Rest_api Using Flask Framework, Sqlite, and Marshmallow

This is a simple CRUD (Create, Read, Update, Delete) RESTful API implemented using Flask, SQLite, Marshmallow and Postman API. It allows you to perform basic operations on user data, such as adding, retrieving, updating, and deleting user records.

## Requirements

Before running the API, make sure you have the following prerequisites installed:

- Python 3.6 or higher
- Flask
- Flask-SQLAlchemy
- Flask-Marshmallow

You can install these dependencies using the following command:

```bash
>> pip install Flask Flask-SQLAlchemy Flask-Marshmallow

>> git clone https://github.com/raghul-m/CRUD-Rest_api.git
>> cd CRUD-Rest_api
```
Note: This API is intended for educational and learning purposes. It may not be suitable for production use and does not implement security features or validation mechanisms commonly required in real-world applications.