Reading, checking and writing YAML from Python
Project description
YAtiML
YAML-based file formats can be very handy, as YAML is easy to write by humans, and parsing support for it is widely available. Just read your YAML file into a document structure (a tree of nested dicts and lists), and manipulate that in your code.
As long as that YAML file contains exactly what you expect, that works fine. But if it contains a mistake, then you’re likely to crash the program with a cryptic error message, or worse (especially if the YAML file was loaded from the Internet) it may do something unexpected.
To avoid that, you can validate your YAML using various schema checkers. You write a description of what your YAML file must look like, then feed that to a library which checks the incoming file against the description. That gives you a better error message, but it’s a lot of work.
YAtiML takes a different approach. Instead of a schema, you write a Python class. You probably already know how to do that, so no need to learn anything. YAtiML then generates loading and dumping functions for you, which convert between YAML and Python objects. If needed, you can add some extra code to make the YAML look nicer or implement special features.
YAtiML supports Python 3.6 and later.
If you use YAtiML for scientific work, we ask that you cite it. You can download a citation in various formats at the Research Software Directory.
Documentation and Help
Instructions on how to install and use YAtiML can be found in the YAtiML documentation.
Code of Conduct
Before describing where to ask questions or report bugs, we’d like to point out that this project is governed by a code of conduct, as described in CODE_OF_CONDUCT.rst, and we expect you to adhere to it. Please be nice to your fellow humans.
Questions
If you have a question that the documentation does not answer for you, then you have found a bug in the documentation. We’d love to fix it, but we need a bit of help from you to do so. Please do the following:
use the search functionality to see if someone already filed the same issue;
if your issue search did not yield any relevant results, make a new issue;
apply the “Question” label; apply other labels when relevant.
We’ll answer your question, and improve the documentation where necessary.
Bugs
Like most software, YAtiML is made by humans, and we make mistakes. If you think you’ve found a bug in YAtiML, please let us know! Reporting bugs goes as follows.
Use the search functionality to see if someone already filed the same issue.
If your issue search did not yield any relevant results, make a new issue.
- Please explain:
what you were trying to achieve,
what you did to make that happen,
what you expected the result to be,
what happened instead.
It really helps to have the actual code for a simple example that demonstrates the issue, but excerpts and error messages and a description are welcome too.
Finally, apply any relevant labels to the newly created issue.
With that, we should be able to fix the problem.
License
YAtiML is Copyright 2018-2024, Netherlands eScience Center, University of Amsterdam, and VU University Amsterdam
Distributed under the Apache Software License 2.0.
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
File details
Details for the file yatiml-0.11.1.tar.gz
.
File metadata
- Download URL: yatiml-0.11.1.tar.gz
- Upload date:
- Size: 47.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 354cefe305e45a557eda18cd3adc7680a178b4a4ebf68606404bf967fb7a72af |
|
MD5 | 6f58946335bba15bc8813b201af86e92 |
|
BLAKE2b-256 | 4d708ffdeb0432e490e9d9fb0a6cd986f5b43d2ac2f792275164f7534b6c0452 |
File details
Details for the file yatiml-0.11.1-py3-none-any.whl
.
File metadata
- Download URL: yatiml-0.11.1-py3-none-any.whl
- Upload date:
- Size: 41.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 03ca3853778281d9777d9b390ee6976109d73edd99fb7a04e1561ae16da8a01e |
|
MD5 | 38de6c95361dcbc5f910612124ed81e3 |
|
BLAKE2b-256 | 8b18e03835e3f79bbc70018a664182af8e698e063d16ed883c3f9e6fa79d7a6e |