maxml 1.0.1__tar.gz → 1.0.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.
- {maxml-1.0.1 → maxml-1.0.2}/PKG-INFO +4 -3
- {maxml-1.0.1 → maxml-1.0.2}/README.md +1 -1
- {maxml-1.0.1 → maxml-1.0.2}/requirements.txt +2 -1
- {maxml-1.0.1 → maxml-1.0.2}/source/maxml/element/__init__.py +2 -2
- maxml-1.0.2/source/maxml/version.txt +1 -0
- {maxml-1.0.1 → maxml-1.0.2}/source/maxml.egg-info/PKG-INFO +4 -3
- {maxml-1.0.1 → maxml-1.0.2}/source/maxml.egg-info/requires.txt +2 -1
- maxml-1.0.1/source/maxml/version.txt +0 -1
- {maxml-1.0.1 → maxml-1.0.2}/pyproject.toml +0 -0
- {maxml-1.0.1 → maxml-1.0.2}/requirements.development.txt +0 -0
- {maxml-1.0.1 → maxml-1.0.2}/requirements.distribution.txt +0 -0
- {maxml-1.0.1 → maxml-1.0.2}/setup.cfg +0 -0
- {maxml-1.0.1 → maxml-1.0.2}/source/maxml/__init__.py +0 -0
- {maxml-1.0.1 → maxml-1.0.2}/source/maxml/logging/__init__.py +0 -0
- {maxml-1.0.1 → maxml-1.0.2}/source/maxml/namespace/__init__.py +0 -0
- {maxml-1.0.1 → maxml-1.0.2}/source/maxml.egg-info/SOURCES.txt +0 -0
- {maxml-1.0.1 → maxml-1.0.2}/source/maxml.egg-info/dependency_links.txt +0 -0
- {maxml-1.0.1 → maxml-1.0.2}/source/maxml.egg-info/top_level.txt +0 -0
- {maxml-1.0.1 → maxml-1.0.2}/source/maxml.egg-info/zip-safe +0 -0
- {maxml-1.0.1 → maxml-1.0.2}/tests/test_element.py +0 -0
- {maxml-1.0.1 → maxml-1.0.2}/tests/test_namespace.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: maxml
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: A streamlined pure Python XML serializer.
|
|
5
5
|
Author: Daniel Sissman
|
|
6
6
|
License-Expression: MIT
|
|
@@ -18,7 +18,8 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.13
|
|
19
19
|
Requires-Python: >=3.10
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
|
-
Requires-Dist:
|
|
21
|
+
Requires-Dist: classicist==1.0.*
|
|
22
|
+
Requires-Dist: enumerific==1.0.*
|
|
22
23
|
Provides-Extra: development
|
|
23
24
|
Requires-Dist: black==24.10.*; extra == "development"
|
|
24
25
|
Requires-Dist: pytest==8.3.*; extra == "development"
|
|
@@ -48,7 +49,7 @@ using `pip` via the `pip install` command by entering the following into your sh
|
|
|
48
49
|
|
|
49
50
|
### Example Usage
|
|
50
51
|
|
|
51
|
-
To use the MaXML library, import the library
|
|
52
|
+
To use the MaXML library, import the library and begin creating your XML document:
|
|
52
53
|
|
|
53
54
|
```python
|
|
54
55
|
import maxml
|
|
@@ -18,7 +18,7 @@ using `pip` via the `pip install` command by entering the following into your sh
|
|
|
18
18
|
|
|
19
19
|
### Example Usage
|
|
20
20
|
|
|
21
|
-
To use the MaXML library, import the library
|
|
21
|
+
To use the MaXML library, import the library and begin creating your XML document:
|
|
22
22
|
|
|
23
23
|
```python
|
|
24
24
|
import maxml
|
|
@@ -3,7 +3,7 @@ from __future__ import annotations
|
|
|
3
3
|
from maxml.namespace import Namespace
|
|
4
4
|
from maxml.logging import logger
|
|
5
5
|
|
|
6
|
-
from
|
|
6
|
+
from classicist import hybridmethod
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
logger = logger.getChild(__name__)
|
|
@@ -71,7 +71,7 @@ class Element(object):
|
|
|
71
71
|
for namespace in self._namespaces:
|
|
72
72
|
if namespace.prefix == prefix:
|
|
73
73
|
if namespace.uri == uri:
|
|
74
|
-
logger.
|
|
74
|
+
logger.info(
|
|
75
75
|
" >>> The '%s' namespace has already been registered..."
|
|
76
76
|
% (prefix)
|
|
77
77
|
)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.0.2
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: maxml
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: A streamlined pure Python XML serializer.
|
|
5
5
|
Author: Daniel Sissman
|
|
6
6
|
License-Expression: MIT
|
|
@@ -18,7 +18,8 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.13
|
|
19
19
|
Requires-Python: >=3.10
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
|
-
Requires-Dist:
|
|
21
|
+
Requires-Dist: classicist==1.0.*
|
|
22
|
+
Requires-Dist: enumerific==1.0.*
|
|
22
23
|
Provides-Extra: development
|
|
23
24
|
Requires-Dist: black==24.10.*; extra == "development"
|
|
24
25
|
Requires-Dist: pytest==8.3.*; extra == "development"
|
|
@@ -48,7 +49,7 @@ using `pip` via the `pip install` command by entering the following into your sh
|
|
|
48
49
|
|
|
49
50
|
### Example Usage
|
|
50
51
|
|
|
51
|
-
To use the MaXML library, import the library
|
|
52
|
+
To use the MaXML library, import the library and begin creating your XML document:
|
|
52
53
|
|
|
53
54
|
```python
|
|
54
55
|
import maxml
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
1.0.1
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|