libknot 3.5.0__tar.gz → 3.5.2__tar.gz
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.
- {libknot-3.5.0 → libknot-3.5.2}/PKG-INFO +5 -4
- {libknot-3.5.0 → libknot-3.5.2}/README.md +4 -0
- {libknot-3.5.0 → libknot-3.5.2}/libknot.egg-info/PKG-INFO +5 -4
- {libknot-3.5.0 → libknot-3.5.2}/pyproject.toml +1 -4
- {libknot-3.5.0 → libknot-3.5.2}/setup.py +1 -4
- {libknot-3.5.0 → libknot-3.5.2}/libknot/__init__.py +0 -0
- {libknot-3.5.0 → libknot-3.5.2}/libknot/control.py +0 -0
- {libknot-3.5.0 → libknot-3.5.2}/libknot/dname.py +0 -0
- {libknot-3.5.0 → libknot-3.5.2}/libknot/probe.py +0 -0
- {libknot-3.5.0 → libknot-3.5.2}/libknot.egg-info/SOURCES.txt +0 -0
- {libknot-3.5.0 → libknot-3.5.2}/libknot.egg-info/dependency_links.txt +0 -0
- {libknot-3.5.0 → libknot-3.5.2}/libknot.egg-info/top_level.txt +0 -0
- {libknot-3.5.0 → libknot-3.5.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: libknot
|
|
3
|
-
Version: 3.5.
|
|
3
|
+
Version: 3.5.2
|
|
4
4
|
Summary: Python bindings for libknot
|
|
5
5
|
Home-page: https://gitlab.nic.cz/knot/knot-dns/-/tree/master/python/libknot
|
|
6
6
|
Author: CZ.NIC, z.s.p.o.
|
|
@@ -10,9 +10,6 @@ Project-URL: Documentation, https://www.knot-dns.cz/documentation
|
|
|
10
10
|
Project-URL: Issues, https://gitlab.nic.cz/knot/knot-dns/-/issues
|
|
11
11
|
Project-URL: Source, https://gitlab.nic.cz/knot/knot-dns/-/tree/master/python/libknot
|
|
12
12
|
Classifier: Development Status :: 5 - Production/Stable
|
|
13
|
-
Classifier: Intended Audience :: Developers
|
|
14
|
-
Classifier: Intended Audience :: System Administrators
|
|
15
|
-
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
|
|
16
13
|
Classifier: Programming Language :: Python :: 3
|
|
17
14
|
Classifier: Topic :: Internet :: Name Service (DNS)
|
|
18
15
|
Classifier: Topic :: Software Development :: Libraries
|
|
@@ -184,6 +181,10 @@ Use `@` as `OWNER` if you want to denote `ZONE` itself as the owner.
|
|
|
184
181
|
* `zone-stats([ZONE], [SECTION, [ITEM]], [FLAGS="F"])`
|
|
185
182
|
+ `SECTION` stores the module, `ITEM` stores the counter
|
|
186
183
|
+ the `F` flag specifies to include 0 counters in server's response
|
|
184
|
+
* `zone-serial-set([ZONE], [FLAGS="F"], [TYPE="+"|"=", DATA])`
|
|
185
|
+
+ the `F` flag forces serial change, when semantic checks would otherwise fail
|
|
186
|
+
+ the `TYPE` section controls, whether the serial is *increased* (+) or *set*
|
|
187
|
+
(=) to the value provided in `DATA`.
|
|
187
188
|
|
|
188
189
|
#### Configuration
|
|
189
190
|
|
|
@@ -162,6 +162,10 @@ Use `@` as `OWNER` if you want to denote `ZONE` itself as the owner.
|
|
|
162
162
|
* `zone-stats([ZONE], [SECTION, [ITEM]], [FLAGS="F"])`
|
|
163
163
|
+ `SECTION` stores the module, `ITEM` stores the counter
|
|
164
164
|
+ the `F` flag specifies to include 0 counters in server's response
|
|
165
|
+
* `zone-serial-set([ZONE], [FLAGS="F"], [TYPE="+"|"=", DATA])`
|
|
166
|
+
+ the `F` flag forces serial change, when semantic checks would otherwise fail
|
|
167
|
+
+ the `TYPE` section controls, whether the serial is *increased* (+) or *set*
|
|
168
|
+
(=) to the value provided in `DATA`.
|
|
165
169
|
|
|
166
170
|
#### Configuration
|
|
167
171
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: libknot
|
|
3
|
-
Version: 3.5.
|
|
3
|
+
Version: 3.5.2
|
|
4
4
|
Summary: Python bindings for libknot
|
|
5
5
|
Home-page: https://gitlab.nic.cz/knot/knot-dns/-/tree/master/python/libknot
|
|
6
6
|
Author: CZ.NIC, z.s.p.o.
|
|
@@ -10,9 +10,6 @@ Project-URL: Documentation, https://www.knot-dns.cz/documentation
|
|
|
10
10
|
Project-URL: Issues, https://gitlab.nic.cz/knot/knot-dns/-/issues
|
|
11
11
|
Project-URL: Source, https://gitlab.nic.cz/knot/knot-dns/-/tree/master/python/libknot
|
|
12
12
|
Classifier: Development Status :: 5 - Production/Stable
|
|
13
|
-
Classifier: Intended Audience :: Developers
|
|
14
|
-
Classifier: Intended Audience :: System Administrators
|
|
15
|
-
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
|
|
16
13
|
Classifier: Programming Language :: Python :: 3
|
|
17
14
|
Classifier: Topic :: Internet :: Name Service (DNS)
|
|
18
15
|
Classifier: Topic :: Software Development :: Libraries
|
|
@@ -184,6 +181,10 @@ Use `@` as `OWNER` if you want to denote `ZONE` itself as the owner.
|
|
|
184
181
|
* `zone-stats([ZONE], [SECTION, [ITEM]], [FLAGS="F"])`
|
|
185
182
|
+ `SECTION` stores the module, `ITEM` stores the counter
|
|
186
183
|
+ the `F` flag specifies to include 0 counters in server's response
|
|
184
|
+
* `zone-serial-set([ZONE], [FLAGS="F"], [TYPE="+"|"=", DATA])`
|
|
185
|
+
+ the `F` flag forces serial change, when semantic checks would otherwise fail
|
|
186
|
+
+ the `TYPE` section controls, whether the serial is *increased* (+) or *set*
|
|
187
|
+
(=) to the value provided in `DATA`.
|
|
187
188
|
|
|
188
189
|
#### Configuration
|
|
189
190
|
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "libknot"
|
|
7
|
-
version = "3.5.
|
|
7
|
+
version = "3.5.2"
|
|
8
8
|
description = "Python bindings for libknot"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.5"
|
|
@@ -14,9 +14,6 @@ authors = [
|
|
|
14
14
|
]
|
|
15
15
|
classifiers = [
|
|
16
16
|
"Development Status :: 5 - Production/Stable",
|
|
17
|
-
"Intended Audience :: Developers",
|
|
18
|
-
"Intended Audience :: System Administrators",
|
|
19
|
-
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
|
|
20
17
|
"Programming Language :: Python :: 3",
|
|
21
18
|
"Topic :: Internet :: Name Service (DNS)",
|
|
22
19
|
"Topic :: Software Development :: Libraries",
|
|
@@ -7,7 +7,7 @@ if p.exists():
|
|
|
7
7
|
|
|
8
8
|
setuptools.setup(
|
|
9
9
|
name='libknot',
|
|
10
|
-
version='3.5.
|
|
10
|
+
version='3.5.2',
|
|
11
11
|
description='Python bindings for libknot',
|
|
12
12
|
long_description=long_description,
|
|
13
13
|
long_description_content_type="text/markdown",
|
|
@@ -18,9 +18,6 @@ setuptools.setup(
|
|
|
18
18
|
packages=['libknot'],
|
|
19
19
|
classifiers=[ # See https://pypi.org/classifiers
|
|
20
20
|
'Development Status :: 5 - Production/Stable',
|
|
21
|
-
'Intended Audience :: Developers',
|
|
22
|
-
'Intended Audience :: System Administrators',
|
|
23
|
-
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
|
|
24
21
|
'Programming Language :: Python :: 3',
|
|
25
22
|
'Topic :: Internet :: Name Service (DNS)',
|
|
26
23
|
'Topic :: Software Development :: Libraries',
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|