You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+27-1
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,7 @@ Requires Python 3.7 or higher.
20
20
* Inheritance does work, but has the same limitations as dataclasses. Inheriting from base classes with required fields and declaring optional fields doesn't work due to field order. This isn't recommended
21
21
* Namespace support is decent as long as correctly declared. I've tried on several real-world examples, although they were known to be valid. `lxml` does a great job at expanding namespace information when loading and simplifying it when saving
22
22
* Post-load validation hook `xml_validate`
23
+
* Fields not required in the constructor are ignored by this library (via `ignored()` or `init=False`)
If defined, the `load` function will call it after all values have been loaded and assigned to the XML dataclass. You can validate the fields you want inside this method. Return values are ignored; instead raise and catch exceptions.
86
87
88
+
### Ignored fields
89
+
90
+
Fields not required in the constructor are ignored by this library (new in version 0.0.6). This is useful if you want to populate a field via post-load validation.
91
+
92
+
You can simply set `init=False`, although you may also want to exclude the field from comparisons. The `ignored` function does this, and can also be used.
93
+
94
+
The name doesn't matter, but it might be useful to use the `_` prefix as a convention.
95
+
87
96
## Example (fully type hinted)
88
97
89
98
(This is a simplified real world example - the container can also include optional `links` child elements.)
@@ -192,10 +201,27 @@ This makes sense in many cases, but possibly not every case.
192
201
Most of these limitations/assumptions are enforced. They may make this project unsuitable for your use-case.
193
202
194
203
* If you need to pass any parameters to the wrapped `@dataclass` decorator, apply it before the `@xml_dataclass` decorator
195
-
* Setting the `init` parameter of a dataclass' `field` will lead to bad things happening, this isn't supported.
196
204
* Deserialisation is strict; missing required attributes and child elements will cause an error. I want this to be the default behaviour, but it should be straightforward to add a parameter to `load` for lenient operation
197
205
* Dataclasses must be written by hand, no tools are provided to generate these from, DTDs, XML schema definitions, or RELAX NG schemas
198
206
207
+
## Changelog
208
+
209
+
### [0.0.6] - 2020-03-25
210
+
211
+
* Allow ignored fields via `init=false` or the `ignored` function
212
+
213
+
### [0.0.5] - 2020-02-18
214
+
215
+
* Fixed type hinting for consumers. While the library passed mypy validation, it was hard to get XML dataclasses in a codebase to pass mypy validation
216
+
217
+
### [0.0.4] - 2020-02-16
218
+
219
+
* Improved type resolving. This lead to easier field definitions, as `attr` and `child` are no longer needed because the type of the field is inferred
220
+
221
+
### [0.0.3] - 2020-02-16
222
+
223
+
* Added support for union types on children
224
+
199
225
## Development
200
226
201
227
This project uses [pre-commit](https://pre-commit.com/) to run some linting hooks when committing. When you first clone the repo, please run:
0 commit comments