https://github.com/joshika39/python-assignment
A sample python app using CRUD operation with FastAPI
https://github.com/joshika39/python-assignment
assignment crud crud-application fastapi python university
Last synced: 2 months ago
JSON representation
A sample python app using CRUD operation with FastAPI
- Host: GitHub
- URL: https://github.com/joshika39/python-assignment
- Owner: joshika39
- Created: 2024-03-23T19:43:33.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-25T23:54:26.000Z (over 2 years ago)
- Last Synced: 2025-04-01T11:15:19.452Z (about 1 year ago)
- Topics: assignment, crud, crud-application, fastapi, python, university
- Language: Python
- Homepage: https://py-assignment.kou-gen.net
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python assignment for University
The assignment is can be accessed [here](https://py-assignment.kou-gen.net/).
## Usage
### Linux
```bash
python -m venv venv
. venv/bin/activate
pip install -r requirements.txt --upgrade
python main.py
```
### Windows
```ps1
py -m venv venv
.\venv\Scripts\Activate.ps1
pip install -r requirements.txt --upgrade
py main.py
```