octodns-cloudns 0.0.3__py3-none-any.whl → 0.0.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- octodns_cloudns/__init__.py +709 -695
- {octodns_cloudns-0.0.3.dist-info → octodns_cloudns-0.0.5.dist-info}/LICENSE +674 -674
- {octodns_cloudns-0.0.3.dist-info → octodns_cloudns-0.0.5.dist-info}/METADATA +81 -84
- octodns_cloudns-0.0.5.dist-info/RECORD +6 -0
- {octodns_cloudns-0.0.3.dist-info → octodns_cloudns-0.0.5.dist-info}/WHEEL +1 -1
- octodns_cloudns-0.0.3.dist-info/RECORD +0 -6
- {octodns_cloudns-0.0.3.dist-info → octodns_cloudns-0.0.5.dist-info}/top_level.txt +0 -0
|
@@ -1,84 +1,81 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: octodns-cloudns
|
|
3
|
-
Version: 0.0.
|
|
4
|
-
Summary:
|
|
5
|
-
Home-page: https://github.com/octodns/octodns-cloudns
|
|
6
|
-
Author: ClouDNS
|
|
7
|
-
Author-email: support@cloudns.net
|
|
8
|
-
License: MIT
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
Requires-Dist:
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
Requires-Dist:
|
|
17
|
-
Requires-Dist:
|
|
18
|
-
Requires-Dist:
|
|
19
|
-
Requires-Dist:
|
|
20
|
-
Requires-Dist:
|
|
21
|
-
Requires-Dist:
|
|
22
|
-
Requires-Dist:
|
|
23
|
-
Requires-Dist:
|
|
24
|
-
Requires-Dist:
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
Requires-Dist: pytest
|
|
28
|
-
Requires-Dist: pytest-
|
|
29
|
-
Requires-Dist:
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
octodns==0.
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
See the [/script/](/script/) directory for some tools to help with the development process. They generally follow the [Script to rule them all](https://github.com/github/scripts-to-rule-them-all) pattern. Most useful is `./script/bootstrap` which will create a venv and install both the runtime and development related requirements. It will also hook up a pre-commit hook that covers most of what's run by CI.
|
|
83
|
-
|
|
84
|
-
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: octodns-cloudns
|
|
3
|
+
Version: 0.0.5
|
|
4
|
+
Summary: ClouDNS API provider for octoDNS
|
|
5
|
+
Home-page: https://github.com/octodns/octodns-cloudns
|
|
6
|
+
Author: ClouDNS
|
|
7
|
+
Author-email: support@cloudns.net
|
|
8
|
+
License: MIT
|
|
9
|
+
Requires-Python: >=3.6
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Requires-Dist: octodns>=0.9.17
|
|
13
|
+
Requires-Dist: requests>=2.27.0
|
|
14
|
+
Provides-Extra: dev
|
|
15
|
+
Requires-Dist: pytest; extra == "dev"
|
|
16
|
+
Requires-Dist: pytest-cov; extra == "dev"
|
|
17
|
+
Requires-Dist: pytest-network; extra == "dev"
|
|
18
|
+
Requires-Dist: requests_mock; extra == "dev"
|
|
19
|
+
Requires-Dist: black<24.0.0,>=23.1.0; extra == "dev"
|
|
20
|
+
Requires-Dist: build>=0.7.0; extra == "dev"
|
|
21
|
+
Requires-Dist: isort>=5.11.5; extra == "dev"
|
|
22
|
+
Requires-Dist: pyflakes>=2.2.0; extra == "dev"
|
|
23
|
+
Requires-Dist: readme_renderer[md]>=26.0; extra == "dev"
|
|
24
|
+
Requires-Dist: twine>=3.4.2; extra == "dev"
|
|
25
|
+
Provides-Extra: test
|
|
26
|
+
Requires-Dist: pytest; extra == "test"
|
|
27
|
+
Requires-Dist: pytest-cov; extra == "test"
|
|
28
|
+
Requires-Dist: pytest-network; extra == "test"
|
|
29
|
+
Requires-Dist: requests_mock; extra == "test"
|
|
30
|
+
|
|
31
|
+
## ClouDNS API provider for octoDNS
|
|
32
|
+
|
|
33
|
+
An [octoDNS](https://github.com/octodns/octodns/) provider that targets ClouDNS.
|
|
34
|
+
|
|
35
|
+
### Installation
|
|
36
|
+
|
|
37
|
+
#### Command line
|
|
38
|
+
|
|
39
|
+
```
|
|
40
|
+
pip install octodns-cloudns
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
#### requirements.txt/setup.py
|
|
44
|
+
|
|
45
|
+
Pinning specific versions or SHAs is recommended to avoid unplanned upgrades.
|
|
46
|
+
|
|
47
|
+
##### Versions
|
|
48
|
+
|
|
49
|
+
```
|
|
50
|
+
# Start with the latest versions and don't just copy what's here
|
|
51
|
+
octodns==0.9.14
|
|
52
|
+
octodns-cloudns==0.0.1
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### Configuration
|
|
56
|
+
|
|
57
|
+
```yaml
|
|
58
|
+
providers:
|
|
59
|
+
cloudns_account:
|
|
60
|
+
class: octodns.provider.cloudns.ClouDNSProvider
|
|
61
|
+
auth_id: <api_auth_id>
|
|
62
|
+
auth_password: <api_auth_password>
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
### Support Information
|
|
66
|
+
|
|
67
|
+
#### GeoDNS records
|
|
68
|
+
|
|
69
|
+
ClouDNSProvider suports GeoDNS records
|
|
70
|
+
|
|
71
|
+
#### Records
|
|
72
|
+
|
|
73
|
+
ClouDNSProvider suports А, AAAA, ALIAS, CAA, CNAME, DNAME, MX, NS, PTR, SPF, SRV, SSHFP, TXT, TLSA, LOC and NAPTR
|
|
74
|
+
|
|
75
|
+
#### Dynamic
|
|
76
|
+
|
|
77
|
+
ClouDNSProvider does not support dynamic records.
|
|
78
|
+
|
|
79
|
+
### Development
|
|
80
|
+
|
|
81
|
+
See the [/script/](/script/) directory for some tools to help with the development process. They generally follow the [Script to rule them all](https://github.com/github/scripts-to-rule-them-all) pattern. Most useful is `./script/bootstrap` which will create a venv and install both the runtime and development related requirements. It will also hook up a pre-commit hook that covers most of what's run by CI.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
octodns_cloudns/__init__.py,sha256=WjWP6fMEH9Bu3mFFUMSmdQkIEbp6S2qViUwkBrJzGus,28553
|
|
2
|
+
octodns_cloudns-0.0.5.dist-info/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
|
|
3
|
+
octodns_cloudns-0.0.5.dist-info/METADATA,sha256=ZWRqo7Dk9oXoAHeDQUHX-gYu_7gyOWnGzjbBrJBfiwc,2447
|
|
4
|
+
octodns_cloudns-0.0.5.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
5
|
+
octodns_cloudns-0.0.5.dist-info/top_level.txt,sha256=t-gGz4zcl1yUE6hyw-aaR6KggpKY25v5xwsSJw-zBdY,16
|
|
6
|
+
octodns_cloudns-0.0.5.dist-info/RECORD,,
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
octodns_cloudns/__init__.py,sha256=hVc17wlwKSIlzJNrzh7w9PYj1KJktpxyqANZMKe7JDY,26920
|
|
2
|
-
octodns_cloudns-0.0.3.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
3
|
-
octodns_cloudns-0.0.3.dist-info/METADATA,sha256=dAr73tUR_3gpXbhI1iPFbmqYCZNtkFF6MNyyjvInDJo,2423
|
|
4
|
-
octodns_cloudns-0.0.3.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
5
|
-
octodns_cloudns-0.0.3.dist-info/top_level.txt,sha256=t-gGz4zcl1yUE6hyw-aaR6KggpKY25v5xwsSJw-zBdY,16
|
|
6
|
-
octodns_cloudns-0.0.3.dist-info/RECORD,,
|
|
File without changes
|