Skip to main content

A python library for reading and writing NBT files

Project description

Python-NBT

A python library for reading and writing NBT files. Compatible with json.

Based on NBT Version: 19133 (Current version used by Minecraft)

What is NBT

NBT (Named Binary Tag) is a tag based binary format designed to carry large amounts of binary data with smaller amounts of additional data. An NBT file consists of a single GZIPped Named Tag of type TAG_Compound.

From official Minecraft Wiki.

Installation

pip install Python-NBT

Usage

Read an NBT file

>>> import python_nbt.nbt as nbt
>>> file = nbt.read_from_nbt_file("file.nbt")

This function returns an instance of NBTTagCompound, or by the name on Minecraft Wiki, an instance of TAG_Compound. It only accept 1 argument, which can be either a file path string or an opened file stream.

The TAG_Compound acts like a dict in Python. More accurately, it is a subclass of dict in Python with some restrictions put on its keys and values. So you can get, and set its items as shown below:

>>> file['drop_loot_crates']
{'type_id': 1, 'value': 0}
>>> file['drop_loot_crates'] = nbt.TAG_Byte(1)
>>> file['drop_loot_crates']
{'type_id': 1, 'value': 1}

In the dict shown as above, the key 'type_id' represents the type id of an NBT. In our example, its 'type_id' is 1, which indicates this NBT is a TAG_Byte. And 'value' indicates its actual value.

Write an NBT file

Once you've completed editing an NBT, you can store it into an NBT file with the function below:

write_to_nbt_file(file, tag)

The first argument file should be a path string or a file stream to the file you want to create/write. The second argument tag is the NBT you want to write.

Compat with Json

If you want to export NBT in json, you can use NBTTagBase.json_obj(full_json=True) to get an json style dict that contains all the NBT information. After that, you can use json module in Python to do whatever you want. If you want a simpler version, which omits type id of an NBT and NBTs inside it, set full_json to False. Note: Changing full_json to False will also turn json dict of nested tags into simple version.

If you want to import NBT from a json object, you can use nbt.from_json(json_obj) to do so. This function will return an NBT object. And its argument must be as same format as what NBTTagBase.json_obj(full_json=True) exports.

Future features

Ticked entries are finished.

  • More json compat
    • Convert json into NBT
    • Better and configurable json output (omitting NBT types)
  • Convenient classes for reading and writing Minecraft saves files
    • World
    • Region
    • Chunk
    • ItemStack
    • TileEntity
    • Entity
    • Player
  • Utilities for mods
  • A detailed ~~doc/~~wiki
  • More convenient interfaces for NBT (try to fully abandon value property, and makes everthing just it should be)
    • Operators for numeric tags
      • +, -, *, /
      • **, //
      • >, <
    • List interfaces for array-like NBT
    • Dict interfaces for dict-like NBT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Python-NBT-1.1.3.tar.gz (7.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

Python_NBT-1.1.3-py3-none-any.whl (20.4 kB view details)

Uploaded Python 3

File details

Details for the file Python-NBT-1.1.3.tar.gz.

File metadata

  • Download URL: Python-NBT-1.1.3.tar.gz
  • Upload date:
  • Size: 7.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.7.4

File hashes

Hashes for Python-NBT-1.1.3.tar.gz
Algorithm Hash digest
SHA256 feefbe53f5921b9d1f2656e64f1dc21a3bca54dd003c79804698a93e079be61a
MD5 2af8033424ac0f3eab35f3a1245835d8
BLAKE2b-256 1cdc8bf860b043a932722b863ab82081640d723c8f06d759c9c9c8804b937709

See more details on using hashes here.

File details

Details for the file Python_NBT-1.1.3-py3-none-any.whl.

File metadata

  • Download URL: Python_NBT-1.1.3-py3-none-any.whl
  • Upload date:
  • Size: 20.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.7.4

File hashes

Hashes for Python_NBT-1.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 7cb12fd677cf8b3a775acd0c32d4e6377eba3d3fb66b269933c48d47800dde6e
MD5 6ee58656b16d11780f99cd5eb716cf70
BLAKE2b-256 e3ef36d75c4ea40c2d74e07131f58bd27b231aca19c09cf54b8f7249cb42eab6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page