Metadata-Version: 1.0
Name: pyregdom
Version: 0.1.20140818.3
Summary: Detect the registered domain for a given domain name based on Mozillas effective TLD listing
Home-page: https://github.com/huyphan/pyregdom
Author: Huy Phan
Author-email: dachuy@gmail.com
License: Apache 2.0
Description: pyregdom - Python library for Mozilla Public Suffix list
        ========================================================
        
        A Python version of `usrflo's regdom
        libs <https://github.com/usrflo/registered-domain-libs>`_ to detect the
        registered domain for a given domain name, based on `Mozillas effective
        TLD listing <https://publicsuffix.org/list/>`_.
        
        Installation
        ============
        From source code: ::
        
            $ sudo python setup.py install
        
        Using pip: ::
        
            $ pip install pyregdom
        
        Update the list
        ===============
        
        Simply run the script **generate_effective_tlds.py** under **scripts**
        directory, it will download and parse the latest `Mozilla Public
        Suffix <https://publicsuffix.org/list/>`_ ::
        
        $ scripts/generate_effective_tlds.py
        
        Then re-install the module from
        source.
        
        You can also use your own list file: ::
        
        $ scripts/generate_effective_tlds.py your_own_list_file.dat
        
        The script doesn't check for the format of the file so make sure you have it
        in the same format defined at `Mozilla Public
        List <https://publicsuffix.org/list/>`_.
        
        Author of this module will also update ``pyregdom`` on pypi every month
        if there are changes in the list.
        
        Update the list
        ===============
        
        Source code is hosted at Github, you can get a local copy of the development repository with:  ::
        
            $ git clone https://github.com/huyphan/pyregdom
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
