Search code examples
pythonpip

httpstat pip installed but not working as a command httpstat


I'm trying to use the Python library "httpstat".

enter image description here

As is mentioned on the official docs it says if I download it through pip I can use httpstat as command but I can't do that. It just throws the error that command isn't recognized.

enter image description here

As you can see it's already installed.

enter image description here

But I can't use it as a command.


Solution

  • You can try this way:

    python3 -m httpstat httpbin.org/get
    

    It's should work

    enter image description here