Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/noureldin2303/flask_restful
Simple flask restful app
https://github.com/noureldin2303/flask_restful
flask flask-application flask-restful flask-sqlalchemy python python3 rest restful restful-api
Last synced: 2 days ago
JSON representation
Simple flask restful app
- Host: GitHub
- URL: https://github.com/noureldin2303/flask_restful
- Owner: Noureldin2303
- License: mit
- Created: 2024-12-16T18:27:48.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2025-01-16T15:56:09.000Z (14 days ago)
- Last Synced: 2025-01-16T17:18:53.614Z (14 days ago)
- Topics: flask, flask-application, flask-restful, flask-sqlalchemy, python, python3, rest, restful, restful-api
- Language: Python
- Homepage:
- Size: 44.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Flask_restful mini app
[![My Skills](https://skillicons.dev/icons?i=py,flask)](https://skillicons.dev)
A simple RESTful API application created as a practice project using Flask.
## How to Start the App
1. Clone the repository:
```bash
git clone https://github.com/Noureldin2303/Flask_restful.git
```
2. Navigate to the project directory:
```bash
cd Flask_restful
```
3. Create a virtual environment:
```bash
python3 -m venv venv
```
4. Activate the virtual environment:
- On Windows:
```bash
venv\Scripts\activate
```
- On macOS/Linux:
```bash
source venv/bin/activate
```
5. Install the dependencies:
```bash
pip install -r requirements.txt
```
6. Run the application:
```bash
python3 run.py
```## File Structure
```
Flask_restful/
├── app/
│ ├── __init__.py
│ ├── routes.py
│ └── models.py
├── .gitignore
├── README.md
├── requirements.txt
└── run.py
```