0
0
mirror of https://github.com/thegeeklab/corenetworks.git synced 2024-06-02 16:59:41 +02:00
corenetworks/docs/content/setup/_index.md

77 lines
2.1 KiB
Markdown
Raw Normal View History

---
title: Setup
---
{{< toc >}}
2020-04-15 17:00:15 +02:00
## Installation
2020-06-03 17:17:03 +02:00
<!-- prettier-ignore-start -->
{{< highlight Python "linenos=table" >}}
2020-04-15 17:00:15 +02:00
pip install corenetworks
2020-06-03 17:17:03 +02:00
{{< /highlight >}}
<!-- prettier-ignore-end -->
2020-04-15 17:00:15 +02:00
## Example usage
2020-06-03 17:17:03 +02:00
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
{{< highlight Python "linenos=table" >}}
2020-04-15 17:00:15 +02:00
#!/usr/bin/env python
import requests
from corenetworks import CoreNetworks
from corenetworks.exceptions import CoreNetworksException
try:
user = "my_user"
password = "my_password"
dns = CoreNetworks(user, password, auto_commit=True)
zones = dns.zones()
print(zones)
# [{'name': 'example.com', 'type': 'master'}, {'name': 'test.com', 'type': 'master'}]
zone = dns.zone(zone="example.com")
print(zone)
# [{'active': True, 'dnssec': True, 'master': None, 'name': 'example.com', 'tsig': None, 'type': 'master'}]
records = dns.records(zone="example.com")
print(records)
2020-04-15 17:20:16 +02:00
# [
# {'name': '@', 'ttl': '1800', 'type': 'SOA', 'data': 'ns1.core-networks.de. [...]'},
# {'name': 'test', 'ttl': '60', 'type': 'A', 'data': '1.2.3.4'},
# {'name': '@', 'ttl': '86400', 'type': 'NS', 'data': 'ns1.core-networks.de.'},
# {'name': '@', 'ttl': '86400', 'type': 'NS', 'data': 'ns2.core-networks.eu.'},
# {'name': '@', 'ttl': '86400', 'type': 'NS', 'data': 'ns3.core-networks.com.'}
# ]
2020-04-15 17:00:15 +02:00
filtered = dns.records(zone="example.com", params={"type": ["A", "AAAA"]})
print(filtered)
# [{'name': 'test', 'ttl': '3600', 'type': 'A', 'data': '1.2.3.4'}]
add_record = dns.add_record(
zone="example.com", params={
"name": "test",
"type": "A",
"data": "127.0.0.1",
"ttl": 3600,
}
)
print(add_record)
# [{'name': 'test', 'ttl': '3600', 'type': 'A', 'data': '127.0.0.1'}]
del_record = dns.delete_record(zone="example.com", params={
"name": "test",
"type": "A",
})
print(del_record)
# []
except Exception as e:
print(str(e))
2020-06-03 17:17:03 +02:00
{{< /highlight >}}
<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->