Metadata-Version: 2.4
Name: nbt-helper
Version: 0.4.0
Summary: Module for reading and writing Minecraft data files.
Project-URL: Homepage, https://github.com/AntynK/nbt-helper
Project-URL: Documentation, https://github.com/AntynK/nbt-helper/blob/master/docs
Project-URL: Repository, https://github.com/AntynK/nbt-helper.git
Project-URL: Issues, https://github.com/AntynK/nbt-helper/issues
Author: Andrii Karandashov
License-Expression: MIT
License-File: LICENSE
Keywords: Minecraft,Minecraft Java,Minecraft NBT,NBT
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.9
Provides-Extra: test
Requires-Dist: pytest>=7.0; extra == 'test'
Description-Content-Type: text/markdown

# NBT helper
This package provides tools for reading and writing Minecraft data files. 

The current version supports reading and writing all NBT tags and also reading and writing region files(.mca).

## Features
Module uses BinaryHandle, a special class for reading and writing binary data. Because of that, byte order can be easily changed.

> [!NOTE]
> Java Edition(JE) tags are big-endian, but Bedrock Edition(BE) tags are little-endian

## License
This packaged was inspired by [NBT](https://github.com/twoolie/NBT) package.