Skip to main content

INWX API Python Client

Project description

INWX Domrobot Python 3 Client

You can access all functions of our frontend via our API, which is available via the XML-RPC or JSON-RPC protocol and thus can be easily consumed with all programming languages.

There is also an OT&E test system, which you can access via ote.inwx.com. Here you will find the known web interface which is using a test database. On the OT&E system no actions will be charged. So you can test as much as you like there.

Documentation

You can view a detailed description of the API functions in our documentation. You can find the online documentation by clicking here.

If you still experience any kind of problems don't hesitate to contact our support via email.

Installation

The recommended way is via pip:

pip install inwx-domrobot

You can find more information about the package on pypi.org.

Example

from INWX.Domrobot import ApiClient

username = ''
password = ''
domain = 'my-test-domain-which-is-definitely-not-registered6737.com'

api_client = ApiClient(api_url=ApiClient.API_OTE_URL, debug_mode=True)

login_result = api_client.login(username, password)

if login_result['code'] == 1000:
    domain_check_result = api_client.call_api(api_method='domain.check', method_params={'domain': domain})

    if domain_check_result['code'] == 1000:
        checked_domain = domain_check_result['resData']['domain'][0]

        if checked_domain['avail']:
            print(domain + ' is still available!')
        else:
            print('Unfortunately, ' + domain + ' is already registered.')

    else:
        raise Exception('Api error while checking domain status. Code: ' + str(domain_check_result['code'])
                        + '  Message: ' + domain_check_result['msg'])
    api_client.logout()
else:
    raise Exception('Api login error. Code: ' + str(login_result['code']) + '  Message: ' + login_result['msg'])

You can also have a look at the example folder in the project for even more info.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

inwx_domrobot-3.0.4.tar.gz (4.5 kB view details)

Uploaded Source

Built Distribution

inwx_domrobot-3.0.4-py3-none-any.whl (5.5 kB view details)

Uploaded Python 3

File details

Details for the file inwx_domrobot-3.0.4.tar.gz.

File metadata

  • Download URL: inwx_domrobot-3.0.4.tar.gz
  • Upload date:
  • Size: 4.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.9

File hashes

Hashes for inwx_domrobot-3.0.4.tar.gz
Algorithm Hash digest
SHA256 e4540b94445462e2276e16a3429eefc807a05399eb268d38a1f3b699e4c15207
MD5 92eb562f99fa0d00dab661f6b3ce2e4b
BLAKE2b-256 9e1d1db53bb464a0a4d7e96a823c81d0afad92306ea8d431f432a75ac5e8c45e

See more details on using hashes here.

File details

Details for the file inwx_domrobot-3.0.4-py3-none-any.whl.

File metadata

  • Download URL: inwx_domrobot-3.0.4-py3-none-any.whl
  • Upload date:
  • Size: 5.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.9

File hashes

Hashes for inwx_domrobot-3.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 fa912eee777a92186f2870249593a5c5dc3534e002b05d9890e8842a9c044adf
MD5 1950b3f058c4b7cedf2359192ae4064d
BLAKE2b-256 dc21af9aa390e2b5dd05407ae155e2ada00d313afdf3fe761a1b04e52b59f80c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page