Metadata-Version: 1.1
Name: html_text
Version: 0.1.1
Summary: Extract text from HTML
Home-page: https://github.com/TeamHG-Memex/html-text
Author: Konstantin Lopukhin
Author-email: kostia.lopuhin@gmail.com
License: MIT license
Description: ============
        HTML to Text
        ============
        
        
        .. image:: https://img.shields.io/pypi/v/html-text.svg
           :target: https://pypi.python.org/pypi/html-text
           :alt: PyPI Version
        
        .. image:: https://img.shields.io/travis/TeamHG-Memex/html-text.svg
           :target: https://travis-ci.org/TeamHG-Memex/html-text
           :alt: Build Status
        
        .. image:: http://codecov.io/github/TeamHG-Memex/soft404/coverage.svg?branch=master
           :target: http://codecov.io/github/TeamHG-Memex/html-text?branch=master
           :alt: Code Coverage
        
        Extract text from HTML
        
        
        * Free software: MIT license
        
        
        Install
        -------
        
        Install with pip::
        
            pip install html-text
        
        The package depends on lxml, so you might need to install some additional
        packages: http://lxml.de/installation.html
        
        
        Usage
        -----
        
        Extract text from HTML::
        
            >>> import html_text
            >>> text = html_text.extract_text(u'<h1>Hey</h1>')
            u'Hey'
        
        
        Credits
        -------
        
        The code is extracted from utilities used in several projects, written by Mikhail Korobov.
        
        
        =======
        History
        =======
        
        0.1.1 (2017-01-16)
        ------------------
        
        * Travis-CI and codecov.io integrations added
        
        
        0.1.0 (2016-09-27)
        ------------------
        
        * First release on PyPI.
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
