Metadata-Version: 1.1
Name: ispapi
Version: 0.0.1
Summary: Hexonet ISP API
Home-page: https://retailify.de/
Author: Thomas Meitz
Author-email: info@retailify.de
License: BSD License
Description: Hexonet ISP API
        ===============
        
        This is a clone of Hexonet ispapi 2.2.
        
        .. code:: python
        
            # Import the ispapi library
            import ispapi
            
            # Create a connection with the URL, entity, login and password
            # Use "1234" as entity for the OT&E, and "54cd" for productive use
            # Don't have a HEXONET Account yet? Get one here: www.hexonet.net/sign-up
            api = ispapi.connect(
                url = 'https://coreapi.1api.net/api/call.cgi',
                entity = '1234',
                login = 'test.user',
                password = 'test.passw0rd'
            )
            
            # Call a command
            response = api.call({
            'Command': "QueryDomainList", 'limit' : 5
            })
            
            # Display the result in the format you want
            res = response.as_list()
            res = response.as_list_hash()
            res = response.as_hash()
            
            # Get the response code and the response description
            code = response.code()
            description = response.description()
Platform: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
