Skip to main content

Lint for HTTP messages.

Project description

httplint

This Python library lints HTTP messages; it checks them for correctness and reports any issues it finds.

It has been extracted from REDbot, which will eventually depend upon it. Unlike REDbot, it does not perform any 'active' checks by making requests to the network, and it does not have a Web user interface.

Using httplint

httplint exposes two classes for linting: HttpRequestLinter and HttpResponseLinter. They expose the following methods for telling the linter about the HTTP message:

  • As appropriate:
    • process_request_topline, which takes three bytes arguments: method, uri, and version
    • process_response_topline, which takes three bytes arguments: version, status_code, and status_phrase
  • process_headers for the headers, taking a list of (name, value) tuples (both bytes)
  • feed_content for the body (which can be called zero to many times), taking an inbytes argument
  • finish_content when done, which has two arguments; a bool indicating whether the response was complete, and an optional list of tuples for the trailers, in the same format that process_headers takes.

For example:

from httplint import HttpResponseLinter

linter = HttpResponseLinter()
linter.process_response_topline(b'HTTP/1.1', b'200', b'OK')
linter.process_headers([
  (b'Content-Type', b'text/plain'),
  (b'Content-Length', b'10'),
  (b'Cache-Control', b'max-age=60')
])
linter.feed_content(b'12345')
linter.feed_content(b'67890')
linter.finish_content(True)

Interpreting Notes

Once a message has been linted, the results will appear on the notes property. This is a list of Note objects, each having the following attributes:

  • category - the Note's category; see note.categories
  • level - see note.levels
  • summary - a brief, one-line description of the note
  • detail - a longer explanation

Note that summary is textual, and needs to be escaped in a markup environment; detail, however, is already escaped HTML.

Continuing our example:

for note in linter.notes:
  print(note.summary)

and the output should be:

The Content-Length header is correct.
This response allows all caches to store it.
This response doesn't have a Date header.
This response is fresh until 1 min from now.
This response may still be served by a cache once it becomes stale.

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

httplint-2023.10.1.tar.gz (66.8 kB view details)

Uploaded Source

Built Distribution

httplint-2023.10.1-py3-none-any.whl (99.0 kB view details)

Uploaded Python 3

File details

Details for the file httplint-2023.10.1.tar.gz.

File metadata

  • Download URL: httplint-2023.10.1.tar.gz
  • Upload date:
  • Size: 66.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for httplint-2023.10.1.tar.gz
Algorithm Hash digest
SHA256 1cacb0af24d569753c5375ef13cb27bbc47a945e21e88ab0035745aebab1d896
MD5 66decbab8a34ad4edd98fcf4b07fce5a
BLAKE2b-256 c29890f5a5ab3c79b52cea8f664827fe8beda21919569417562582de576df4cb

See more details on using hashes here.

Provenance

File details

Details for the file httplint-2023.10.1-py3-none-any.whl.

File metadata

  • Download URL: httplint-2023.10.1-py3-none-any.whl
  • Upload date:
  • Size: 99.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for httplint-2023.10.1-py3-none-any.whl
Algorithm Hash digest
SHA256 4b5f162e5958e66cf5e5f9465aaf4bec4f62c308606d5f6be3a81811720beca7
MD5 ffdb4652e76ffe1678dfed89e0aa57d7
BLAKE2b-256 082d4b4ca6a8db894bbe609c7e12b2cc3e30ef07c3d22314d27e034c07c8c11a

See more details on using hashes here.

Provenance

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