An open API service indexing awesome lists of open source software.

https://github.com/grandmoff100/duckdnsapi

A python wrapper of the DuckDNS HTTP API.
https://github.com/grandmoff100/duckdnsapi

api duckdns hacktoberfest http python sphinx-doc wrapper-api

Last synced: 7 months ago
JSON representation

A python wrapper of the DuckDNS HTTP API.

Awesome Lists containing this project

README

          

# DuckDNS API

## Quick Example

```python
import os
from duckdnsapi import Client

client = Client(os.getenv("my_duckdns_token"))

resp = client.update_ip("mywebhook", ip="127.0.0.1", verbose=True)

print(resp)
```