Metadata-Version: 1.1
Name: domain-parser
Version: 0.0.3.3
Summary: Proper domain parser using TLD info from publicsuffix.org
Home-page: http://github.com/jeffknupp/domain-parser/
Author: Jeff Knupp
Author-email: jeff@jeffknupp.com
License: Apache Software License
Description: # Python domain-parser
        
        Parse domains using the TLD list maintained by publicsuffix.org.
        
        Domains are parsed into their TLD, SLD, and subdomains. TLDs like 'co.uk' are
        handled properly. The list of possible TLDs is generated from publicsuffix.org.
        The first time the library is run, an HTTP request is made and a `.tld.pickle` file 
        is created. Subsequent runs don't make an HTTP request. Rather, they load the
        pickle file. If you want to refresh the list, simply delete the pickle file.
        
        ## TODO
        
        There are tests, but not enough. I'm hoping that if people find this useful
        they'll contribute test cases to the projects.
        
Platform: any
Classifier: Programming Language :: Python
Classifier: Development Status :: 4 - Beta
Classifier: Natural Language :: English
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
