Skip to main content

The set of standard http constants

Project description

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"

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

http-status-codes-1.0.3.tar.gz (7.1 kB view hashes)

Uploaded Source

Built Distribution

http_status_codes-1.0.3-py3-none-any.whl (7.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page