Forked from schematics/schematics: Python Data Structures for Humans, supporting python 3.10 plus.
Project description
About
This is a Fork from the hard work of the maintainers at https://github.com/schematics/schematics.
Here’s a summary of the changes:
add support for python 3.10+
drop support for python version 3.6, 3.7, and 3.8
run black and isort on the code base
package with flit, updating to pyproject.toml
add development environment setup with nix and package as a nix flake.
and that’s it!
I don’t plan on any changes to this library aside from maintaining support for modern python versions as long as this library is still a dependency for projects that I’m involved with which is unlikely to be forever. I would recommend planning on porting your validation code to another validation / serialization library that is actively maintained. But until then I’ll do my best to keep this current with new python versions. Thank you to the original maintainers for all of their work!
Project documentation: https://schematics.readthedocs.io/en/latest/
Schematics is a Python library to combine types into structures, validate them, and transform the shapes of your data based on simple descriptions.
The internals are similar to ORM type systems, but there is no database layer in Schematics. Instead, we believe that building a database layer is made significantly easier when Schematics handles everything but writing the query.
Further, it can be used for a range of tasks where having a database involved may not make sense.
Some common use cases:
Design and document specific data structures
Convert structures to and from different formats such as JSON or MsgPack
Validate API inputs
Remove fields based on access rights of some data’s recipient
Define message formats for communications protocols, like an RPC
Custom persistence layers
Example
This is a simple Model.
>>> from schematics.models import Model
>>> from schematics.types import StringType, URLType
>>> class Person(Model):
... name = StringType(required=True)
... website = URLType()
...
>>> person = Person({'name': u'Joe Strummer',
... 'website': 'http://soundcloud.com/joestrummer'})
>>> person.name
u'Joe Strummer'
Serializing the data to JSON.
>>> import json
>>> json.dumps(person.to_primitive())
{"name": "Joe Strummer", "website": "http://soundcloud.com/joestrummer"}
Let’s try validating without a name value, since it’s required.
>>> person = Person()
>>> person.website = 'http://www.amontobin.com/'
>>> person.validate()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "schematics/models.py", line 231, in validate
raise DataError(e.messages)
schematics.exceptions.DataError: {'name': ['This field is required.']}
Add the field and validation passes.
>>> person = Person()
>>> person.name = 'Amon Tobin'
>>> person.website = 'http://www.amontobin.com/'
>>> person.validate()
>>>
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file schematics-py310-plus-0.0.4.tar.gz.
File metadata
- Download URL: schematics-py310-plus-0.0.4.tar.gz
- Upload date:
- Size: 107.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0041b272b6bda7c9062011be42d466e9d3a790df03f5159ccf6ca665e70ebeb
|
|
| MD5 |
c032a06b85c03b85a36da52cf0368abc
|
|
| BLAKE2b-256 |
9016da7df2d93dea318dd85ed873cbc7613bc6e422c37c569197f09fc7b80397
|
File details
Details for the file schematics_py310_plus-0.0.4-py2.py3-none-any.whl.
File metadata
- Download URL: schematics_py310_plus-0.0.4-py2.py3-none-any.whl
- Upload date:
- Size: 50.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
378a0d8545ed1b722db7c139c4583c08194eec892582468d08f39eac6492a0e3
|
|
| MD5 |
6ceaac0d968631a6febd402bebf1669c
|
|
| BLAKE2b-256 |
cd61ca950baa32ef66fb869ca10c9826d910f1131725f0666c3cf093aed761fe
|