Metadata-Version: 2.0
Name: cf-ddns
Version: 1.0.3
Summary: CloudFlare Dynamic DNS updater
Home-page: https://github.com/maedox/cf-ddns
Author: Pål Nilsen
Author-email: paal.nilsen@gmail.com
License: MIT
Keywords: ddns cloudflare
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: requests
Provides-Extra: sentry
Requires-Dist: raven; extra == 'sentry'

cf-ddns
=======

# Cloudflare DNS client

Use the Cloudflare API to keep records up to date with your current IP address(es).

You could run it from your crontab every five minutes or so.

This will add/update an A/AAAA record for domain.tld with your external IP address:
```*/5 *  * * *  cf-ddns.py --name domain.tld```

Make sure CF_EMAIL and CF_TOKEN environment variables are set.

Execute `cf-ddns.py -h` for list of arguments.

If you want to use Sentry for alerts, set the DSN in the SENTRY_DSN environment variable.

## Requirements:
- A Cloudflare account and domain name.
- Python 3.4 or newer
- Requests (https://github.com/kennethreitz/requests)
- Optional: Raven (for Sentry alerting)

## Disclaimer:
This software is provided as is. It should be safe, but don't blame me if your
computer blows up. It is tested on Ubuntu 16.10 with Python 3.5.2.

## Installation:
```pip install --upgrade cf-ddns```

Optionally with Sentry alerting:

```pip install --upgrade cf-ddns[sentry]```


Twitter: https://twitter.com/maedox/


