Skip to main content

inscriptis - HTML to text converter.

Project description

Supported python versions Maintainability Coverage Build status Documentation status PyPI version

A python based HTML to text conversion library, command line client and Web service with support for nested tables and a subset of CSS. Please take a look at the Rendering document for a demonstration of inscriptis’ conversion quality.

A Java port of inscriptis is availabe here.

Documentation

The full documentation is built automatically and published on Read the Docs.

Table of Contents

  1. Installation

  2. Python library

  3. Standalone command line client

  4. Web service

  5. Fine tuning

  6. Changelog

Installation

At the command line:

$ pip install inscriptis

Or, if you don’t have pip installed:

$ easy_install inscriptis

If you want to install from the latest sources, you can do:

$ git clone https://github.com/weblyzard/inscriptis.git
$ cd inscriptis
$ python setup.py install

Python library

Embedding inscriptis into your code is easy, as outlined below:

import urllib.request
from inscriptis import get_text

url = "https://www.informationscience.ch"
html = urllib.request.urlopen(url).read().decode('utf-8')

text = get_text(html)
print(text)

Standalone command line client

The command line client converts HTML files or text retrieved from Web pages to the corresponding text representation.

Command line parameters

The inscript.py command line client supports the following parameters:

usage: inscript.py [-h] [-o OUTPUT] [-e ENCODING] [-i] [-d] [-l] [-a]
                   [--indentation INDENTATION] [-v]
                   [input]

Converts HTML from file or url to a clean text version

positional arguments:
  input                 Html input either from a file or an url
                        (default:stdin)

optional arguments:
  -h, --help            show this help message and exit
  -o OUTPUT, --output OUTPUT
                        Output file (default:stdout).
  -e ENCODING, --encoding ENCODING
                        Content encoding for reading and writing files
                        (default:utf-8)
  -i, --display-image-captions
                        Display image captions (default:false).
  -d, --deduplicate-image-captions
                        Deduplicate image captions (default:false).
  -l, --display-link-targets
                        Display link targets (default:false).
  -a, --display-anchor-urls
                        Deduplicate image captions (default:false).
  --indentation INDENTATION
                        How to handle indentation (extended or strict;
                        default: extended).
  -v, --version         display version information

Examples

convert the given page to text and output the result to the screen:

$ inscript.py https://www.fhgr.ch

convert the file to text and save the output to output.txt:

$ inscript.py fhgr.html -o fhgr.txt

convert text provided via stdin and save the output to output.txt:

$ echo '<body><p>Make it so!</p>></body>' | inscript.py -o output.txt

Web Service

The Flask Web Service translates HTML pages to the corresponding plain text.

Additional Requirements

  • python3-flask

Startup

Start the inscriptis Web service with the following command:

$ export FLASK_APP="web-service.py"
$ python3 -m flask run

Usage

The Web services receives the HTML file in the request body and returns the corresponding text. The file’s encoding needs to be specified in the Content-Type header (UTF-8 in the example below):

$ curl -X POST  -H "Content-Type: text/html; encoding=UTF8" --data-binary @test.html  http://localhost:5000/get_text

The service also supports a version call:

$ curl http://localhost:5000/version

Fine tuning

The following options are available for fine tuning inscriptis’ HTML rendering:

  1. More rigorous indentation: call inscriptis.get_text() with the parameter indentation=’extended’ to also use indentation for tags such as <div> and <span> that do not provide indentation in their standard definition. This strategy is the default in inscript.py and many other tools such as lynx. If you do not want extended indentation you can use the parameter indentation=’standard’ instead.

  2. Overwriting the default CSS definition: inscriptis uses CSS definitions that are maintained in inscriptis.css.CSS for rendering HTML tags. You can override these definitions (and therefore change the rendering) as outlined below:

    from lxml.html import fromstring
    from inscriptis.css_profiles import CSS_PROFILES, HtmlElement
    from inscriptis.html_properties import Display
    from inscriptis.model.config import ParserConfig
    
    # create a custom CSS based on the default style sheet and change the rendering of `div` and `span` elements
    css = CSS_PROFILES['strict'].copy()
    css['div'] = HtmlElement('div', display=Display.block, padding=2)
    css['span'] = HtmlElement('span', prefix=' ', suffix=' ')
    
    html_tree = fromstring(html)
    # create a parser using a custom css
    config = ParserConfig(css=css)
    parser = Inscriptis(html_tree, config)
    text = parser.get_text()

Changelog

A full list of changes can be found in the release notes.

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

inscriptis-1.2.tar.gz (17.2 kB view details)

Uploaded Source

Built Distribution

inscriptis-1.2-py3-none-any.whl (22.0 kB view details)

Uploaded Python 3

File details

Details for the file inscriptis-1.2.tar.gz.

File metadata

  • Download URL: inscriptis-1.2.tar.gz
  • Upload date:
  • Size: 17.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.4

File hashes

Hashes for inscriptis-1.2.tar.gz
Algorithm Hash digest
SHA256 0769455bf630cc255d47c97057d546116f4745f2228bcbb8f12cb4c0af977966
MD5 21a02b5c8937cb86c53bd4fb64b362ee
BLAKE2b-256 a0f7a46cf82c712bdff1805e947f3280ff87da75c77002dfbbdfcdbcdd01a733

See more details on using hashes here.

File details

Details for the file inscriptis-1.2-py3-none-any.whl.

File metadata

  • Download URL: inscriptis-1.2-py3-none-any.whl
  • Upload date:
  • Size: 22.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.4

File hashes

Hashes for inscriptis-1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 493c7ae3e7f9d3041784dad03074609763cba450e53f2a73598e3fe55d89d993
MD5 b06cf0b6797a34a62c0a42a0d1c070c5
BLAKE2b-256 1e1cedd5ef45d08f77c7e1443445f6c7db3ed9efe1156a29eecf4231a82daa55

See more details on using hashes here.

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