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

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

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
```