Metadata-Version: 1.1
Name: pyHTMLParser
Version: 1.6.0
Summary: A simple html parser that constructs DOM tree.
Home-page: http://ishibashijun.github.io/pyHTMLParser/
Author: Jun Ishibashi
Author-email: ishibashijun@gmail.com
License: MIT
Description: It is aimed to provide jquery like API.
        
        Example
        -------
        
        .. code-block:: python
        
            from pyHTMLParser.Parser import Parser
            
            parser = Parser()
            parser.open('http://www.example.com')
            links = parser.tag('a')
            for link in links:
                print(link.attr('href'))
            parser.close()
        
        Documentation
        -------------
        
        `API Docs <http://ishibashijun.github.io/pyHTMLParser/>`_ .
        
Keywords: parse,scrape,html,parser,tree,DOM
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Text Processing :: Markup :: HTML
