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.
- Host: GitHub
- URL: https://github.com/grandmoff100/duckdnsapi
- Owner: GrandMoff100
- Created: 2021-10-23T16:50:42.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-11-19T18:49:56.000Z (almost 4 years ago)
- Last Synced: 2025-01-23T12:15:31.127Z (9 months ago)
- Topics: api, duckdns, hacktoberfest, http, python, sphinx-doc, wrapper-api
- Language: Python
- Homepage:
- Size: 17.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# DuckDNS API
## Quick Example
```python
import os
from duckdnsapi import Clientclient = Client(os.getenv("my_duckdns_token"))
resp = client.update_ip("mywebhook", ip="127.0.0.1", verbose=True)
print(resp)
```