Metadata-Version: 1.1
Name: pyHTMLParser
Version: 2.0.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.Query import Q_open, Q_close, Q
            
            Q_open('http://www.example.com')
            
            second_target_link = Q('a[href$="-target.html"]:nth-child(2)')
            print(second_target_link.attr('href'))
        
            >>> some-target.html
            
            Q_close()
        
        Documentation
        -------------
        
        `API Docs <http://ishibashijun.github.io/pyHTMLParser/>`_ .
        
Keywords: parse,html,jquery,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
