CRUD in API App (Web Based)
Students Theme
- Python 3.7 ~ Lastest
- Postman or Imsomnia
- Download that repository in zip or git clone
- Open CMD/Terminal in repository folder
- Create Python Environtment
python -m venv yourvenvname
- Activate Python Environtment
- Windows
yourvenvname\Scripts\activate
- UNIX/Linux/MacOS
source yourvenvname/bin/activate
- Install Python Module by requirements.txt
pip install -r requirements.txt
- Run main.py
python main.py
- Enter localhost:5000 and try login
username = admin
password = admin123
- Try GET/POST/PUT/DELETE in Postman or Insomnia (Dont Forget to Login in Basic Auth)