An open API service indexing awesome lists of open source software.

https://github.com/epicstuff/taml

YAML but with tabs
https://github.com/epicstuff/taml

tabs taml yaml

Last synced: 4 months ago
JSON representation

YAML but with tabs

Awesome Lists containing this project

README

          

# TAML

YAML but with tabs

## Installation

```bash
pip install taml
```

## Usage

see [ruamel.yaml](https://yaml.readthedocs.io/en/latest/) and replace

```python
from ruamel.yaml import YAML
yaml=YAML()
```

with

```python
from taml import taml
```

## Note to self

- upload with `python -m build` then `python -m dotenv run -- twine upload --skip-existing dist/*`