Metadata-Version: 2.1
Name: SNBT
Version: 0.0.1
Summary: A library that generates SNBT strings for Minecraft
Author: HellishBro
Project-URL: Homepage, https://github.com/HellishBro/SNBT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# SNBT
###### Author: HellishBro

SNBT is a module that allows you to create SNBT objects in Minecraft.

# Examples
###### <sub>ok heres some examples</sub>

```python
import SNBT
print(SNBT.SNBTCompound({
    "direction": [-1, 3, 2],
    "Count": 1,
    "isGrounded": True,
    "motions": [
        [0.1, 21.2],
        [True, 1, False],
        [12917826836018, 1]
    ]
}).dump())
# prints:
# {"direction":[B;-1b,3b,2b],"Count":1b,"isGrounded":1b,"motions":[[0.1f,21.2f],[1b,1b,0b],[12917826836018l,1b]]}
```

# TODO
###### prob. wont be added
* [ ] Convert from SNBT to SNBT Compound
* [ ] Load / Dump to JSON
