Metadata-Version: 2.1
Name: pycfdns
Version: 2.0.0
Summary: Update Cloudflare DNS A-records.
Home-page: https://github.com/ludeeus/pycfdns
Author: Joakim Sorensen
Author-email: hi@ludeeus.dev
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# Update CloudFlare DNS records.

_Update records in your DNS zone._

## Install

```bash
python3 -m pip install pycfdns
```

## Example

```python
"""Example usage of pycfdns."""
import asyncio
import aiohttp
from pycfdns import CloudflareUpdater

API_TOKEN = "5cdba21d55cdba21d55cdba21d5"
ZONE = "example.com"
UPDATE_RECORDS = ["test"]

async def example():
    """Example usage of pycfdns."""
    async with aiohttp.ClientSession() as session:
        cfupdate = CloudflareUpdater(session, API_TOKEN, ZONE, UPDATE_RECORDS)
        zone_id = await cfupdate.get_zone_id()
        records = await cfupdate.get_record_info(zone_id)
        for record in records:
            print(record.record_name)
        await cfupdate.update_records(zone_id, records, "127.0.0.1")


asyncio.get_event_loop().run_until_complete(example())

```
