├── .gitignore ├── __pycache__ ├── bitfumes.cpython-39.pyc ├── main.cpython-39.pyc └── mymain.cpython-39.pyc ├── app ├── blog.db ├── blog │ ├── __init__.py │ ├── database.py │ ├── hashing.py │ ├── models.py │ ├── oauth2.py │ ├── repository │ │ ├── blog.py │ │ └── user.py │ ├── routers │ │ ├── __init__.py │ │ ├── authentication.py │ │ ├── blog.py │ │ └── user.py │ ├── schemas.py │ └── token.py ├── main.py └── requirements.txt ├── blog.db ├── blog ├── __init__.py ├── database.py ├── hashing.py ├── main.py ├── models.py ├── oauth2.py ├── repository │ ├── blog.py │ └── user.py ├── routers │ ├── __init__.py │ ├── authentication.py │ ├── blog.py │ └── user.py ├── schemas.py └── token.py ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/.gitignore -------------------------------------------------------------------------------- /__pycache__/bitfumes.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/__pycache__/bitfumes.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/main.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/__pycache__/main.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/mymain.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/__pycache__/mymain.cpython-39.pyc -------------------------------------------------------------------------------- /app/blog.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/app/blog.db -------------------------------------------------------------------------------- /app/blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/blog/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/app/blog/database.py -------------------------------------------------------------------------------- /app/blog/hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/app/blog/hashing.py -------------------------------------------------------------------------------- /app/blog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/app/blog/models.py -------------------------------------------------------------------------------- /app/blog/oauth2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/app/blog/oauth2.py -------------------------------------------------------------------------------- /app/blog/repository/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/app/blog/repository/blog.py -------------------------------------------------------------------------------- /app/blog/repository/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/app/blog/repository/user.py -------------------------------------------------------------------------------- /app/blog/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/blog/routers/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/app/blog/routers/authentication.py -------------------------------------------------------------------------------- /app/blog/routers/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/app/blog/routers/blog.py -------------------------------------------------------------------------------- /app/blog/routers/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/app/blog/routers/user.py -------------------------------------------------------------------------------- /app/blog/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/app/blog/schemas.py -------------------------------------------------------------------------------- /app/blog/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/app/blog/token.py -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/app/main.py -------------------------------------------------------------------------------- /app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/app/requirements.txt -------------------------------------------------------------------------------- /blog.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/blog.db -------------------------------------------------------------------------------- /blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blog/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/blog/database.py -------------------------------------------------------------------------------- /blog/hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/blog/hashing.py -------------------------------------------------------------------------------- /blog/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/blog/main.py -------------------------------------------------------------------------------- /blog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/blog/models.py -------------------------------------------------------------------------------- /blog/oauth2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/blog/oauth2.py -------------------------------------------------------------------------------- /blog/repository/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/blog/repository/blog.py -------------------------------------------------------------------------------- /blog/repository/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/blog/repository/user.py -------------------------------------------------------------------------------- /blog/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blog/routers/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/blog/routers/authentication.py -------------------------------------------------------------------------------- /blog/routers/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/blog/routers/blog.py -------------------------------------------------------------------------------- /blog/routers/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/blog/routers/user.py -------------------------------------------------------------------------------- /blog/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/blog/schemas.py -------------------------------------------------------------------------------- /blog/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/blog/token.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/FastAPI-Learning/HEAD/requirements.txt --------------------------------------------------------------------------------