{"id":31910785,"url":"https://github.com/bigcheeze45/cloudflare_ddns","last_synced_at":"2026-05-18T04:08:01.599Z","repository":{"id":316769629,"uuid":"1043415020","full_name":"BigCheeze45/cloudflare_ddns","owner":"BigCheeze45","description":"Update Cloudflare DNS when public IP changes","archived":false,"fork":false,"pushed_at":"2025-09-26T16:05:58.000Z","size":26,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-13T16:55:37.467Z","etag":null,"topics":["cloudflare","ddns-script","ddns-updater","python3"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BigCheeze45.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-23T19:58:43.000Z","updated_at":"2025-09-26T16:06:01.000Z","dependencies_parsed_at":"2025-09-26T16:29:38.191Z","dependency_job_id":null,"html_url":"https://github.com/BigCheeze45/cloudflare_ddns","commit_stats":null,"previous_names":["bigcheeze45/cloudflare_ddns"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/BigCheeze45/cloudflare_ddns","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BigCheeze45%2Fcloudflare_ddns","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BigCheeze45%2Fcloudflare_ddns/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BigCheeze45%2Fcloudflare_ddns/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BigCheeze45%2Fcloudflare_ddns/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BigCheeze45","download_url":"https://codeload.github.com/BigCheeze45/cloudflare_ddns/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BigCheeze45%2Fcloudflare_ddns/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33164672,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T22:39:12.733Z","status":"online","status_checked_at":"2026-05-18T02:00:06.436Z","response_time":71,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cloudflare","ddns-script","ddns-updater","python3"],"created_at":"2025-10-13T16:55:20.416Z","updated_at":"2026-05-18T04:08:01.595Z","avatar_url":"https://github.com/BigCheeze45.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dynamic DNS updater for Cloudflare\n\nThis script monitors your public IP address and automatically updates a specified\nCloudflare DNS record when your IP changes. Useful for maintaining access to\nhome servers or services when using dynamic IP addresses from ISPs.\n\nThis project is a Python implemtation of [Paul Sørensen's blog post](\n    https://paulsorensen.io/configure-ddns-with-cloudflare/) and does\n    not utilize Cloudflare Workers.\n\n### Prerequisites\nThis script is helpful if the following conditions apply:\n\n1. You have a domain.\n2. Domain points to a server with a dynamic IP.\n2. **DNS management is done via Cloudflare**. This script will not work as is if DNS records are managed somewhere else.\n\n## Getting Started\nIf you use pip:\n\n```shell\npip install --no-deps -r requirements.txt\n```\n\nIf you use [poetry](https://python-poetry.org/):\n\n```shell\npoetry install\n```\n### Example `main.py`\n```python\nimport requests\nfrom dotenv import dotenv_values\nfrom cloudflare import CloudflareError\n\nfrom ddns_updater import update_dns_ip\n\nif __name__ == \"__main__\":\n    # Load secrets from .env file\n    secrets = dotenv_values()\n    try:\n        record = update_dns_ip(**secrets)\n        if record:\n            # DNS updated\n            pass\n    except CloudflareError as ce:\n        pass\n    except requests.exceptions.HTTPError as htte:\n        pass\n    except Exception as e:\n        pass\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbigcheeze45%2Fcloudflare_ddns","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbigcheeze45%2Fcloudflare_ddns","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbigcheeze45%2Fcloudflare_ddns/lists"}