Metadata-Version: 1.1
Name: htmlcontact
Version: 0.1
Summary: A simple python module to extract contact info from HTML pages
Home-page: http://github.com/tristantao/html-contact
Author: tristan tao
Author-email: tristan@teamleada.com
License: MIT
Description: Quick module to read in HTML and tries to identify contacts from the HTML, whether just email, or first,last based matches etc.
        
        
        Usage
        =====
        
        
            >>> from html_contact import HtmlContact
            >>> hc = HtmlContact(raw_html)
            >>> contacts = hc.search()
        
        Result list is a list of contacts
        
            >>> for result in result_list:
            ...     print result.url
            ...
            u'http://www.python.org/psf/
            ...
            
        What you get is a list of Contacts() instances, each comes with the following values:
            
        ```py
        self.first_name:         fitst name of the contact
        self.last_name:            last_name of the contact
        self.email:          email of the contact
        ```
            
        =======
        # html_contact
        Extracts contact info from website based first/last
        
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
