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
- Host: GitHub
- URL: https://github.com/raghul-m/crud-rest_api
- Owner: Raghul-M
- Created: 2023-07-31T08:30:30.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-26T12:56:40.000Z (almost 3 years ago)
- Last Synced: 2025-03-13T05:42:18.653Z (over 1 year ago)
- Topics: flask, flask-api, flask-sqlalchemy, marshmallow, os, python
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.