-
Notifications
You must be signed in to change notification settings - Fork 74
Home
Freek Dijkstra edited this page May 15, 2018
·
17 revisions
NBT is a Named Binary Tag parser based upon the specification by Markus Persson.
From the Named Binary Tag specification:
“NBT (Named Binary Tag) is a tag based binary format designed to carry large amounts of binary data with smaller amounts of additional data.”
This project also contains helper classes for dealing with Regions, Chunks and World folders in Minecraft, the main use case for the NBT format.
nbt.VERSION = (1, 5, 0)
NBT version as tuple. Note that the major and minor revision number are always present, but the patch identifier (the 3rd number) is only used in 1.4.
nbt._get_version()
Return the NBT version as string.
- Examples
- Named Binary Tag specification
- Changelog
- Unit tests
- Documentation (information for maintainers of the NBT package)
- Releases (information for maintainers of the NBT package)