Skip to content

Latest commit

 

History

History
54 lines (38 loc) · 2.37 KB

README.md

File metadata and controls

54 lines (38 loc) · 2.37 KB

hash-http-content

GitHub Build Status Coverage Status Total alerts Language grade: Python Known Vulnerabilities

This is a Python library to retrieve the contents of a given URL via HTTP (or HTTPS) and hash the processed contents.

Content processing

If an encoding is detected, this package will convert content into the UTF-8 encoding before proceeding.

Additional content processing is currently implemented for the following types of content:

  • HTML
  • JSON

HTML

HTML content is processed by leveraging the pyppeteer package to execute any JavaScript on a retrieved page. The result is then parsed by Beautiful Soup to reduce the content to the human visible portions of a page.

JSON

JSON content is processed by using the json library that is part of the Python standard library. It is read in and then output in a deterministic manner to adjust for any styling differences between content.

Contributing

We welcome contributions! Please see CONTRIBUTING.md for details.

License

This project is in the worldwide public domain.

This project is in the public domain within the United States, and copyright and related rights in the work worldwide are waived through the CC0 1.0 Universal public domain dedication.

All contributions to this project will be released under the CC0 dedication. By submitting a pull request, you are agreeing to comply with this waiver of copyright interest.