Python reader, writer and validator for Meta yAML (MAML).
Project description
MAML
MAML is a YAML based metadata format for tabular data. This is the official python package interface to help read, write, and parse MAML files and implementes the standards and schemas defined here: https://github.com/asgr/MAML-Format
pymaml
This is the official python package for reading, writing, and parsing the Meta yAML format. The MAML format is defined by json schemas which are used to construct pydantic classes which enforce validation.
Installation
pymaml can be installed easily with pip
pip install pymaml
Reading in a .maml file.
Reading a maml file is done using the MAML object in pymaml.
from pymaml import MAML
new_maml = MAML.from_file("example.maml", "v1.1")
This object will only be created if "example.maml" is valid maml for the given version. If it isn't, then a pydantic ValidationError will be raised explaining what is causing the validation error.
Validating a .maml file.
The pymaml package has a valid_for function that will audit a .maml file and return a list of valid maml versions for which that file is valid.
from pymaml import valid_for
valid_versions = valid_for("example.maml")
In this way users can determine if their own maml files are actually valid for the version they expect.
Creating a new maml file
MAML files can be constructed from scratch using the MAMLBuilder which implements a builder pattern and includes some helper methods.
from pymaml.maml import MAMLBuilder
builder = MAMLBuilder("v1.1")
This is the most basic constructions and will create a new builder object which will enforce the version 1.1 schema.
Additional properties can be added or set, and the final validation occurs during the build step.
builder.set("author", "Me")
builder.set("table", "Table Name")
builder.set("version", "1")
builder.add("fields", {"name": "RA", "data_type": "float"})
builder.add("fields", {"name": "Dec", "data_type": "float"})
builder.add("fields", {"name": "redshift", "data_type": "float"})
builder.set("date", "1995-09-12")
maml = builder.build()
The .build() method performs validation in the exact same way as reading from a file.
Defaults
The builder can also generate maml based off of some basic default categories which will create valid MAML.
from pymaml.maml import MAMLBuilder
builder = MAMLBuilder("v1.0", defauts=True)
maml = builder.build()
This will always work since the defaults are always set to be valid maml. But are marked obviously to show that they are default values. The User will need to change these values.
Fields from pandas
Since each column requires a field entry, there can be numerous columns. We include a method in the builder that will autogenerate the field names and datatypes from a pandas dataframe.
from pymaml.maml import MAMLBuilder
import pandas as pd
df = pd.read_csv("example.csv")
builder = MAMLBuilder("v1.0")
builder.fields_from_pandas(df)
builder.set("author", "Me")
builder.set("table", "Table Name")
builder.set("version", "1")
maml = builder.build()
Writing to file
Once the maml data has been read in and edited, or built from scratch the MAML object can be written to a maml file using the to_file method.
maml.to_file("my_maml.maml")
If the maml object exists, then you can take solace in the knowledge that it is valid MAML by design.
In addition the maml data can be converted into a dictionry for more fine tune editing.
dictionary = maml.to_dict()
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 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 pymaml-0.6.2.tar.gz.
File metadata
- Download URL: pymaml-0.6.2.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4565c88b3bb148ee070bc7ac76a5b4891e0471f695af25a41c0bfec2e997cbb
|
|
| MD5 |
328fe0b635b07e31e336e4a1925d3378
|
|
| BLAKE2b-256 |
2a5e4cbf749486cf19238e780e1ce0b5f4219625298c7c983399ad3c35e446a8
|
File details
Details for the file pymaml-0.6.2-py3-none-any.whl.
File metadata
- Download URL: pymaml-0.6.2-py3-none-any.whl
- Upload date:
- Size: 13.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f48bea73f3569c0eae73865a13f72a15ad0bcee3d436bb1d832591e5fd25789
|
|
| MD5 |
eaaf717f1b8ce9e27141e73925224f07
|
|
| BLAKE2b-256 |
fc5cd36fc3156186d76e22e0bd3cea330d298c6396497b7fce06af5c9bb693ba
|