Metadata-Version: 1.1
Name: html_text
Version: 0.1.0
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
        
        .. image:: https://img.shields.io/travis/TeamHG-Memex/html_text.svg
                :target: https://travis-ci.org/TeamHG-Memex/html_text
        
        .. image:: https://readthedocs.org/projects/html-text/badge/?version=latest
                :target: https://html-text.readthedocs.io/en/latest/?badge=latest
                :alt: Documentation Status
        
        
        Extract text from HTML
        
        
        * Free software: MIT license
        * Documentation: https://html-text.readthedocs.io.
        
        
        Features
        --------
        
        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.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.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
