Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 504 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 504 Bytes

Snbtlib

PyPI version

Installation

pip install snbtlib

Usage

import snbtlib
from pathlib import Path

# Reading Text to JSON
json = snbtlib.loads(Path('quest.snbt').read_text(encoding='utf-8'))

# Dumping JSON to Text
text = snbtlib.dumps(json, compact=False)  # When compact is True, the output will be compatible with Version 1.12 and below
Path('quest.snbt').write_text(text, encoding='utf-8')