maxml 1.0.1__py3-none-any.whl → 1.0.2__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.
maxml/element/__init__.py CHANGED
@@ -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 hybridmethod import hybridmethod
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.warning(
74
+ logger.info(
75
75
  " >>> The '%s' namespace has already been registered..."
76
76
  % (prefix)
77
77
  )
maxml/version.txt CHANGED
@@ -1 +1 @@
1
- 1.0.1
1
+ 1.0.2
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: maxml
3
- Version: 1.0.1
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: hybridmethod==1.0.*
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's and begin creating your XML document:
52
+ To use the MaXML library, import the library and begin creating your XML document:
52
53
 
53
54
  ```python
54
55
  import maxml
@@ -0,0 +1,10 @@
1
+ maxml/__init__.py,sha256=QuUB-oFrPKRZ4XzPuk4Mt8r35EMx652PALyAeWvQXIo,72
2
+ maxml/version.txt,sha256=v-wuNFg62n5q8stzmT-3Wj9xR6bJQ-X_X1xClPxXe5A,5
3
+ maxml/element/__init__.py,sha256=8N6ePtw7nOX6VVQ0eG5mmDJkBXo8S1qwVF3k9X2OmLo,23843
4
+ maxml/logging/__init__.py,sha256=AMpvZEQH9GIBe8609sMwb2T64rovpkRRCc9rs2kHy8g,52
5
+ maxml/namespace/__init__.py,sha256=iZqHWuGi09KtMTr7wHiyTQLXB2TFljUir8wZGLi2b60,3882
6
+ maxml-1.0.2.dist-info/METADATA,sha256=J9F0r0aKB7prWv2tALoHhPRtFYCUXm096UOdoRQW5Fc,16193
7
+ maxml-1.0.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
8
+ maxml-1.0.2.dist-info/top_level.txt,sha256=ZFK3SmCc04Dzhl9QkO_hVBAEiHwCNrwn8X_PINWE9C4,6
9
+ maxml-1.0.2.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
10
+ maxml-1.0.2.dist-info/RECORD,,
@@ -1,10 +0,0 @@
1
- maxml/__init__.py,sha256=QuUB-oFrPKRZ4XzPuk4Mt8r35EMx652PALyAeWvQXIo,72
2
- maxml/version.txt,sha256=1R5uyUBYVUqEVYpbQC7m71_fVFXjXJAv7aYc2odSlDo,5
3
- maxml/element/__init__.py,sha256=SvewN3hHpyS0lVfuzdpJdLzUY1KSz1RJ9mv75DyQOHc,23848
4
- maxml/logging/__init__.py,sha256=AMpvZEQH9GIBe8609sMwb2T64rovpkRRCc9rs2kHy8g,52
5
- maxml/namespace/__init__.py,sha256=iZqHWuGi09KtMTr7wHiyTQLXB2TFljUir8wZGLi2b60,3882
6
- maxml-1.0.1.dist-info/METADATA,sha256=rfzeJAnezvD0zD9VdyqlpqjVMZ9-eRrLHfXiXEzd2GU,16164
7
- maxml-1.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
8
- maxml-1.0.1.dist-info/top_level.txt,sha256=ZFK3SmCc04Dzhl9QkO_hVBAEiHwCNrwn8X_PINWE9C4,6
9
- maxml-1.0.1.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
10
- maxml-1.0.1.dist-info/RECORD,,
File without changes