Skip to main content

DNSimple API service for python

Project description

DNSimple Python Client

A Python client for the DNSimple API v2.

CI

Requirements

  • Python 3.12+ - Note later versions of Python may be supported, but we make no guarantees as they are not tracked in our CI.
  • An activated DNSimple account

Installation

Where <version> denotes the version of the client you want to install.

To install the latest version:

pip install dnsimple

To install a specific version:

pip install dnsimple==2.0.1

Usage

This library is a Python client you can use to interact with the DNSimple API v2. Here are some examples.

from dnsimple import Client

client = Client(access_token='a1b2c3')

# Fetch your details
response = client.identity.whoami()             # execute the call
data = response.data                            # extract the relevant data from the response or
account = client.identity.whoami().data.account # execute the call and get the data in one line

Define an account ID

from dnsimple import Client

client = Client(access_token='a1b2c3')
account_id = 1010

# You can also fetch it from the whoami response
# as long as you authenticate with an Account access token
whoami = client.identity.whoami().data
account_id = whoami.account.id

List your domains

from dnsimple import Client

client = Client(access_token='a1b2c3')

account_id = client.identity.whoami().data.account.id
domains = client.domains.list_domains(account_id).data                           # Domains from the 1010 account (first page)
client.domains.list_domains(account_id, sort='expires_on:asc').data              # Domains from the 1010 account in ascending order by domain expiration date
client.domains.list_domains(account_id, filter={'name_like': 'example'}).data    # Domains from the 1010 account filtered by the domain name name

Create a domain

from dnsimple import Client

client = Client(access_token='a1b2c3')

account_id = client.identity.whoami().data.account.id
response = client.domains.create_domain(account_id, 'example.com')
domain = response.data # The newly created domain

Get a domain

from dnsimple import Client

client = Client(access_token='a1b2c3')

account_id = client.identity.whoami().data.account.id
domain_id = client.domains.list_domains(account_id).data[0].id
domain = client.domains.get_domain(account_id, domain_id).data # The domain you are looking for

Research a domain

Note: This endpoint is part of a Private Beta. During the beta period, changes to the endpoint may occur at any time. If interested in using this endpoint, reach out to DNSimple support.

Research a domain name for availability and registration status information:

from dnsimple import Client

client = Client(access_token='a1b2c3')

account_id = client.identity.whoami().data.account.id
response = client.domains.get_domain_research_status(account_id, 'example.com')
research = response.data
print(research.domain)          # "example.com"
print(research.availability)    # "unavailable"
print(research.request_id)      # "f453dabc-a27e-4bf1-a93e-f263577ffaae"
print(research.errors)          # []

Configuration

Sandbox Environment

We highly recommend testing against our sandbox environment before using our production environment. This will allow you to avoid real purchases, live charges on your credit card, and reduce the chance of your running up against rate limits.

The client supports both the production and sandbox environment. To switch to sandbox pass the sandbox API host using the base_url option when you construct the client:

from dnsimple import Client

client = Client(base_url='https://api.sandbox.dnsimple.com', access_token="a1b2c3")

You can also set the sandbox environment like so:

from dnsimple import Client

client = Client(sandbox=True, access_token='a1b2c3')

You will need to ensure that you are using an access token created in the sandbox environment. Production tokens will not work in the sandbox environment.

Setting a custom User-Agent header

You customize the User-Agent header for the calls made to the DNSimple API:

from dnsimple import Client

client = Client(user_agent="my-app")

The value you provide will be appended to the default User-Agent the client uses. For example, if you use my-app, the final header value will be my-app dnsimple-python/0.1.0 (note that it will vary depending on the client version).

Documentation

Contributing

Contributions are welcome! Please feel free to submit issues and pull requests. See CONTRIBUTING.md for guidelines.

Changelog

See CHANGELOG.md for details.

License

Copyright (c) 2024-2026 DNSimple Corporation. This is Free Software distributed under the MIT License.

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

dnsimple-8.0.0.tar.gz (27.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dnsimple-8.0.0-py3-none-any.whl (48.6 kB view details)

Uploaded Python 3

File details

Details for the file dnsimple-8.0.0.tar.gz.

File metadata

  • Download URL: dnsimple-8.0.0.tar.gz
  • Upload date:
  • Size: 27.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.4.1 CPython/3.12.3 Linux/6.17.0-1010-azure

File hashes

Hashes for dnsimple-8.0.0.tar.gz
Algorithm Hash digest
SHA256 370c8131c77c5644e278f7432547f3a0516348fe0c167a9e64f776a6f14b39e0
MD5 819c8329be37f305777437776d654ad5
BLAKE2b-256 233f6dfc54dae943ac2b1c50e2ab87f00e3dd4d42f95371635fe12a8db0baecc

See more details on using hashes here.

File details

Details for the file dnsimple-8.0.0-py3-none-any.whl.

File metadata

  • Download URL: dnsimple-8.0.0-py3-none-any.whl
  • Upload date:
  • Size: 48.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.4.1 CPython/3.12.3 Linux/6.17.0-1010-azure

File hashes

Hashes for dnsimple-8.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1c6e2c01e869d095f67fc2ee90e1f44ba251e8865cd8edef3528c888b632ead3
MD5 7921185a801803bf9e13b993cd737e8f
BLAKE2b-256 ac63a77fa92c6a73f624e204b83a5c4054d75e07f2104918a9b823754676c021

See more details on using hashes here.

Supported by

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