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
- Host: GitHub
- URL: https://github.com/epicstuff/taml
- Owner: EpicStuff
- License: other
- Created: 2024-09-04T17:54:51.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-05T16:29:07.000Z (almost 2 years ago)
- Last Synced: 2024-10-08T09:07:00.645Z (over 1 year ago)
- Topics: tabs, taml, yaml
- Language: Python
- Homepage: https://pypi.org/project/taml/
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/*`