Skip to content

HTTPStatusCodes returns a string detailing of what a given status code means.

License

Notifications You must be signed in to change notification settings

CharlotteCross1998/HTTPStatusCodes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PyPI version

HTTPStatusCodes

HTTPStatusCodes returns a string detailing of what a given status code means.

Install

pip install HTTPStatusCodes

How to use

from HTTPStatusCodes import get_status_string
status = get_status_string(200)
print (status)
>>> 'OK'

Alternatively

import HTTPStatusCodes
status = HTTPStatusCodes.get_status_string(200)
print(status)
>>> 'OK'

About

HTTPStatusCodes returns a string detailing of what a given status code means.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages