http-status-codes 1.0.3

Creator: bradpython12

Last updated:

Add to Cart

Description:

httpstatuscodes 1.0.3

HTTP Status Constants
A set of constants for HTTP statuses and headers. Improve your code readability.
Installation
You can install Http Constants from PyPI:
pip install http_constants

The library is supported on Python 3.7+.
Usage
Headers
from http_constants.headers import HTTPHeaders
HTTPHeaders.ACCEPT
> 'Accept'

HTTPHeaders.CONTENT_TYPE_VALUES.json
> 'application/json'

Statuses
In[1]:
from http_constants import status
status.SERVICE_UNAVAILABLE
Out[1]:
503
---
In[2]:
from http_constants.status import HttpStatus
HttpStatus(500).get_meaning()

Out[2]:
'Internal Server Error'

Methods
In[1]:
from http_constants import method
method.GET
Out[1]:
"GET"

URI Schemas
In[1]:
from http_constants import schema
schema.HTTP
Out[1]:
"http"

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.