User authentication with FastAPI

Installing requirements and, what are JWTs?

Want more?

This lesson for enrolled students only. Join the course to unlock it!

You can see the code changes implemented in this lecture below.

If you have purchased the course in a different platform, you still have access to the code changes per lecture here on Teclado. The lecture video and lecture notes remain locked.
Join course for $30

Modified files

requirements.txt
--- 
+++ 
@@ -8,3 +8,6 @@
 asgi-correlation-id
 python-json-logger
 logtail-python
+python-jose
+python-multipart
+passlib[bcrypt]
requirements-dev.txt
--- 
+++ 
@@ -3,3 +3,4 @@
 isort
 httpx
 pytest
+pytest-mock