If your Python project has a very short list of required packages (in requirements, pipfile, etc), it's easy to see all packages you have. But on large projects, the dependencies can run pretty long, not to mention the dependencies for the required packages. And what about learning more about those dependencies? pip list Will list … Continue reading TIL: installed packages in Python – list, and show
Category: web development
The difference between HTTP status codes 401 and 403: Unauthorized and Forbidden
You are working with an API and after sending a request you receive one of these two HTTP response codes: 401 or 403. What do HTTP status codes 401 and 403 mean? Official specification If you search for the official specification, this is what you get: 401: Unauthorized The 401 (Unauthorized) status code indicates that the request … Continue reading The difference between HTTP status codes 401 and 403: Unauthorized and Forbidden