| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
This directory contains two FastAPI applications: one for basic CRUD operations (task management) and another for user authentication using JWT (JSON Web Tokens).
Task Management API (fastapi-curd.py):
User Authentication API (fastapi-tutorial.py):
To run the applications, ensure you have Python and FastAPI installed. You can install FastAPI and Uvicorn using pip:
pip install fastapi uvicorn python-jose passlib[bcrypt]You can run each application separately.
To run the task management API:
python fastapi-curd.pyThe API will be available at http://localhost:8000/tasks/.
To run the user authentication API:
python fastapi-tutorial.pyThe API will be available at http://localhost:8000/token for login and http://localhost:8000/users/me/ for user information.
| Back | FazBrowse Home | New Git URL |