Skip to main content

Module to dynamically update DNS records from multiple services like Hetzner, Amazon, Microsoft...

Project description

dynami


dynami is a Python package that provides a simple interface for managing DNS records through various providers. Currently, it supports Hetzner as a DNS provider, with more providers to come in future updates.

ko-fi

Installation

You can install dynami via pip:

pip install dynami

Usage

To use dynami, you must first instantiate a provider and client. Here's an example for Hetzner:

from dynami.provider import Hetzner
from dynami.ext import Client

api_key = "YOUR_API_KEY"
zone = "yourdomain.local"

provider = Hetzner(api_key=api_key, zone=zone)
client = Client(provider)

result = client.set(record="www", type="A", value="0.0.0.0")

if result.status_code < 299 and result.status_code > 199:
    print("Success!")
else:
    print("Failed!")

This will create an A record for the www subdomain pointing to 0.0.0.0.

Providers

Currently, dynami only supports Hetzner as a DNS provider. More providers will be added in future updates.

  • Hetzner
  • Amazon Web Services (AWS)
  • Cloudflare
  • DigitalOcean
  • Google Cloud Platform (GCP)
  • Microsoft Azure

Provider configuration

To configure a provider, pass the provider-specific options to its constructor. For Hetzner, these options are:

  • api_key: your Hetzner DNS API key
  • zone: the name of the DNS zone you want to manage

Client methods

Client provides the following methods for managing DNS records:

  • set: creates or updates a DNS record

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

dynami-1.0.7.tar.gz (8.1 kB view hashes)

Uploaded Source

Built Distribution

dynami-1.0.7-py3-none-any.whl (9.5 kB view hashes)

Uploaded Python 3

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