Metadata-Version: 1.1
Name: OnlineNIC
Version: 0.1.2
Summary: A simple wrapper for the OnlineNIC API.
Home-page: http://github.com/kolanos/onlinenic
Author: Michael Lavers
Author-email: kolanos@gmail.com
License: MIT
Description: =========
        OnlineNIC
        =========
        
        A simple wrapper for the `OnlineNIC`<http://www.onlinenic.com> API.
        
        Usage
        -----
        
        Registering a domain name::
        
            import onlinenic
        
            on = onlinenic.OnlineNIC('135610', '654123')
        
            result = on.create_contact(domaintype='0',
                                       name='John Doe',
                                       org='Widgets 'R Us, Inc.',
                                       street='123 Main St',
                                       city='Plainsville',
                                       province='PA',
                                       postalcode='12345',
                                       country='US',
                                       voice='+1.1234567890',
                                       fax='+1.1234567890',
                                       email='johndoe@whocares.com',
                                       password='abc123')
        
            contactid = result['data']['contactid']
        
            result = on.create_domain(domain='somedomain.com',
                                      period='1',
                                      registrant=contactid,
                                      admin=contactid,
                                      tech=contactid,
                                      billing=contactid,
                                      password='abc123',
                                      dns=['ns1.dnsprovider.com',
                                           'ns2.dnsprovider.com'])
        
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Python Modules
