Templated data recomposition
Project description
Recompose
Recompose is a Python package for recomposing data by following instructional schemas.
Full documentation is online at cariad.github.io/recompose.
Example
For example, the code below describes a dataset with groups of people with specific careers, and a schema that reduces the list of firefighters down to a single object.
from recompose import CursorSchema, transform
data = {
"2023-06-04": {
"groups": {
"chefs": [
{
"name": "Alice"
},
{
"name": "Bob"
}
],
"firefighters": [
{
"name": "Daniel"
},
{
"name": "Esther"
}
],
"zookeepers": [
{
"name": "Gregory"
},
{
"name": "Harold"
}
]
}
},
"2023-06-05": {
"groups": {
"chefs": [
{
"name": "Jet"
},
{
"name": "Karen"
}
],
"firefighters": [
{
"name": "Mater"
},
{
"name": "Nigel"
}
],
"zookeepers": [
{
"name": "Peter"
},
{
"name": "Quentin"
}
]
}
}
}
schema: CursorSchema = {
"version": 1,
"on": "each-value",
"perform": {
"path": "groups",
"cursor": {
"perform": {
"path": "firefighters",
"cursor": {
"perform": "list-to-object",
}
}
}
}
}
transformed = transform(schema, data)
print(transformed)
{
"2023-06-04": {
"groups": {
"chefs": [
{
"name": "Alice"
},
{
"name": "Bob"
}
],
"firefighters": {
"name": "Daniel"
},
"zookeepers": [
{
"name": "Gregory"
},
{
"name": "Harold"
}
]
}
},
"2023-06-05": {
"groups": {
"chefs": [
{
"name": "Jet"
},
{
"name": "Karen"
}
],
"firefighters": {
"name": "Mater"
},
"zookeepers": [
{
"name": "Peter"
},
{
"name": "Quentin"
}
]
}
}
}
Author
Hello! 👋 I'm Cariad Eccleston, and I'm a freelance Amazon Web Services architect, DevOps evangelist, and infrastructure and backend engineer by the beach in the United Kingdom.
You can find me at cariad.earth, github.com/cariad and linkedin.com/in/cariad.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
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 recompose-1.1.0-py3-none-any.whl.
File metadata
- Download URL: recompose-1.1.0-py3-none-any.whl
- Upload date:
- Size: 16.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5575db0bcc7acfb3ba6da518b450e315433d1e38b5435ccacf5396806b4dad1
|
|
| MD5 |
2af3726179f2d885ae809baf2e4675ff
|
|
| BLAKE2b-256 |
241f56c15353e0834c2ec57eff68e85ca9ef0843349df063081630e287a2ac9c
|