Skip to main content

Python bindings for High-Performance NBT library

Project description

RapidNBT

GitHub Actions Workflow Status GitHub License C++23
PyPI - Version Python
PyPI - Downloads

Python Bindings for a High-Performance NBT Library

Readme Card

Install 🔧

pip install rapidnbt

Supported NBT format 📖

NBT Format Minecraft Edition Support Status
Little Endian Bedrock Edition :white_check_mark:
Little Endian with Header Bedrock Edition :white_check_mark:
Big Endian Java Edition :white_check_mark:
Big Endian with Header Java Edition :white_check_mark:
Bedrock Network (VarInt Encoding) Bedrock Edition :white_check_mark:
Formatted String (SNBT) Bedrock & Java Edition :white_check_mark:

Full SNBT support - Full SNBT format support, include the new SNBT format since Java Edition 1.21.5

Benchmarks 🚀

Comparing with some popular NBT libraries.

Parsing NBT file (870 MB, little-endian binary NBT)

Library Link Time Performance Memory Usage
RapidNBT https://github.com/GlacieTeam/RapidNBT 5.2s 100% 4800MB
nbtlib https://github.com/vberlier/nbtlib 33.9s 15.3% 6500MB
PyNBT https://github.com/TkTech/PyNBT 33.4s 15.6% 8900MB

Tested on Intel i7 14700-HX with 32GB DDR5-5400 using 720MB little-endian binary NBT

Quick Start 🚀

RapidNBT provides a morden and safe API, and it is easy to use.

  1. Load NBT from file and modify it
from rapidnbt import nbtio, LongTag
from ctypes import c_int16

def example():
    nbt = nbtio.load("./level.dat") # Automatically detect nbt file format and decompress (if compressed)
    # nbt = nbtio.load("./level.dat", NbtFileFormat.BIG_ENDIAN) # You can also specify the file format

    # Modify NBT
    nbt["abc"]["def"] = True # bool will automatically convert to ByteTag(1)
    nbt["ghi"]["hjk"] = c_int16(23) # ctypes.c_int16 will automatically convert to ShortTag(23)
    nbt["lmn"] = ["test1", "test2"] # Python list will automatically convert to ListTag([StringTag("test1"), StringTag("test2")])
    nbt["opq"]["rst"] = { # Python dict will automatically convert to CompoundTag
        "key1": False,
        "key2": b"2345",  # bytes/bytearray will automatically convert to ByteArrayTag
        "key3": LongTag(114514), # You can also directly use Tag
    }
    """
    You need not to create the NBT node first.
    Example:
        nbt["abc"]["def"] = True
        If nbt["abc"]["def"] does not exist, it will be auto created.
    """ 
  1. Create a NBT in memory and save it to file
from rapidnbt import nbtio, CompoundTag, ShortTag, LongTag, DoubleTag, IntArrayTag, NbtFileFormat
from ctypes import c_uint8, c_double

# Create a NBT in memory
nbt = CompoundTag(
    {
        "string": "Test String",
        "byte": c_uint8(114),
        "short": ShortTag(19132),
        "int": 114514,
        "int64": LongTag(1145141919810),
        "float": 1.4142,
        "double": c_double(3.1415926535897),
        "byte_array": b"13276273923",
        "list": ["string1", "string2"],
        "compound": nbt,
        "int_array": IntArrayTag([1, 2, 3, 4, 5, 6, 7]),
        "long_array": LongArrayTag([1, 2, 3, 4, 5, 6, 7]),
    }
)

# Print SNBT
print(nbt.to_snbt()) 
# Or you can specify SNBT format
print(file.to_snbt(format=SnbtFormat.Classic | SnbtFormat.MarkExtra, indent=4))
# Use | to combime format 

# Save NBT to file
nbtio.dump(nbt, "./test.nbt", NbtFileFormat.LITTLE_ENDIAN)
  1. Use context manager to operate NBT file
from rapidnbt import LongTag, nbtio

# use context manager
with nbtio.open("level.dat") as file:
    file["RandomSeed"] = LongTag(1145141919810) # modify NBT
    # Auto save file as original format when exit context manager
  1. Read NBT data
from rapidnbt import nbtio

def example():
    nbt = nbtio.load("./test.nbt") # Automatically detect nbt file format and decompress (if compressed)
    
    value1 = nbt["abc"]["def"].value # Use .value method to get any tag value, and returns a Python object (Python int, str, dict, etc...)

    value2 = nbt["ghi"]["hjk"].get_short() # Use .get_xxx method to safely get tag value, and will throw TypeError if tag is wrong type

    exits = "lmn" in nbt # Check if a tag exist in this NBT
    # exits = nbt.contains("lmn") You can also use .contains() method to check

    del nbt["opq"]["rst"] # Delete a tag in NBT
    # nbt["opq"].remove("rst") You can also use .remove() method to delete
    
    nbt.rename("abc", "ABC") # Rename a key in NBT

More details please see the docstring in .pyi file

CLI 🔧

You can use CLI commands to opeartor NBT files easily.
Use nbt or python -m rapidnbt to run CLI

options:
  -h, --help            show this help message and exit
  -p, --print           print NBT as a formatted string
  -i, --indent INDENT   NBT format indent
  -j, --json            format NBT as a json string
  -o, --output OUTPUT   NBT output file path
  --little              NBT output should use little endian format
  --big                 NBT output should use big endian format
  --network             NBT output should use bedrock network format
  --snbt                NBT output should use a formatted string nbt
  --header              NBT output should write header
  -m, --merge           NBT output should merge exist NBT
  --merge-list          NBT should merge ListTag instead of replace it
  -c, --compression {none,gzip,zlib}
                        NBT output should merge exist NBT

1. Print a NBT file as SNBT
eg. level.dat

nbt level.dat -p

2. Print a NBT file as a json
eg. level.dat, indent = 2

nbt level.dat -pj --indent=2

3. Convert a NBT file to other format
eg. convert level.dat to SNBT and save as level.snbt

python -m rapidnbt level.dat --output=level.snbt --indent=0

4. Merge NBT
eg. use player1.nbt to patch player2.nbt (little-endian, no compression)

nbt player1.dat --output=player2.nbt --merge --little --compression=none

Used Libraries 📖

Library License Link
NBT MPL-2.0 https://github.com/GlacieTeam/NBT
pybind11 BSD-3-Clause https://github.com/pybind/pybind11
magic_enum MIT https://github.com/Neargye/magic_enum

Contributing 🤝

Contributions are welcome! Please follow these steps:

  1. Fork the repository and create your feature branch
  2. Add tests for any new functionality
  3. Submit a pull request with detailed description

License 📄

This project is licensed under the Mozilla Public License 2.0 (MPL-2.0).

Key Requirements:

  • Modifications to this project's files must be released under MPL-2.0.
  • Using this library in closed-source projects is allowed (no requirement to disclose your own code).
  • Patent protection is explicitly granted to all users.

For the full license text, see LICENSE file or visit MPL 2.0 Official Page.


Copyright © 2025 GlacieTeam. All rights reserved.

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

rapidnbt-1.3.5.tar.gz (41.8 kB view details)

Uploaded Source

Built Distributions

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

rapidnbt-1.3.5-cp314-cp314-win_arm64.whl (569.5 kB view details)

Uploaded CPython 3.14Windows ARM64

rapidnbt-1.3.5-cp314-cp314-win_amd64.whl (570.1 kB view details)

Uploaded CPython 3.14Windows x86-64

rapidnbt-1.3.5-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

rapidnbt-1.3.5-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

rapidnbt-1.3.5-cp314-cp314-macosx_11_0_arm64.whl (462.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rapidnbt-1.3.5-cp313-cp313-win_arm64.whl (555.4 kB view details)

Uploaded CPython 3.13Windows ARM64

rapidnbt-1.3.5-cp313-cp313-win_amd64.whl (556.5 kB view details)

Uploaded CPython 3.13Windows x86-64

rapidnbt-1.3.5-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

rapidnbt-1.3.5-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

rapidnbt-1.3.5-cp313-cp313-macosx_11_0_arm64.whl (460.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rapidnbt-1.3.5-cp312-cp312-win_arm64.whl (555.5 kB view details)

Uploaded CPython 3.12Windows ARM64

rapidnbt-1.3.5-cp312-cp312-win_amd64.whl (556.5 kB view details)

Uploaded CPython 3.12Windows x86-64

rapidnbt-1.3.5-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

rapidnbt-1.3.5-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

rapidnbt-1.3.5-cp312-cp312-macosx_11_0_arm64.whl (460.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rapidnbt-1.3.5-cp311-cp311-win_arm64.whl (551.4 kB view details)

Uploaded CPython 3.11Windows ARM64

rapidnbt-1.3.5-cp311-cp311-win_amd64.whl (554.4 kB view details)

Uploaded CPython 3.11Windows x86-64

rapidnbt-1.3.5-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

rapidnbt-1.3.5-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

rapidnbt-1.3.5-cp311-cp311-macosx_11_0_arm64.whl (459.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rapidnbt-1.3.5-cp310-cp310-win_arm64.whl (550.5 kB view details)

Uploaded CPython 3.10Windows ARM64

rapidnbt-1.3.5-cp310-cp310-win_amd64.whl (552.5 kB view details)

Uploaded CPython 3.10Windows x86-64

rapidnbt-1.3.5-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

rapidnbt-1.3.5-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

rapidnbt-1.3.5-cp310-cp310-macosx_11_0_arm64.whl (458.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rapidnbt-1.3.5-cp39-cp39-win_arm64.whl (527.4 kB view details)

Uploaded CPython 3.9Windows ARM64

rapidnbt-1.3.5-cp39-cp39-win_amd64.whl (597.5 kB view details)

Uploaded CPython 3.9Windows x86-64

rapidnbt-1.3.5-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

rapidnbt-1.3.5-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

rapidnbt-1.3.5-cp39-cp39-macosx_11_0_arm64.whl (458.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rapidnbt-1.3.5-cp38-cp38-win_amd64.whl (552.3 kB view details)

Uploaded CPython 3.8Windows x86-64

rapidnbt-1.3.5-cp38-cp38-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

rapidnbt-1.3.5-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

rapidnbt-1.3.5-cp38-cp38-macosx_11_0_arm64.whl (457.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

Details for the file rapidnbt-1.3.5.tar.gz.

File metadata

  • Download URL: rapidnbt-1.3.5.tar.gz
  • Upload date:
  • Size: 41.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for rapidnbt-1.3.5.tar.gz
Algorithm Hash digest
SHA256 d7538fd802c1fe60424219158907151e7b95ae4385f9b1a05a3e45fa1852ef64
MD5 76a46a2c7d2404ab8d6fefd1fdb150ad
BLAKE2b-256 e58e025fb50d03c50171d41c25a94a57c6917f78c3e47b4f7f46a239922589f4

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: rapidnbt-1.3.5-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 569.5 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidnbt-1.3.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 5de9f9df879fd24243c308f967b2271345286545174c5f906e41cd59deca79a7
MD5 287389d399aedd80c379863ca6f9fc4b
BLAKE2b-256 6c0e2a3e00131fb84fdc919456a00f66db332d8a885d610794a0bf720debf295

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rapidnbt-1.3.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 570.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidnbt-1.3.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 37268f485bd5d660282c8e5490fe5ad4cbef50dadc3559133560285315b508ad
MD5 c34458f2f2145b173b1a70f8298fe54c
BLAKE2b-256 afc834a17f8683da1292f40d56e1a256da91289fdf05798ba28eb938034d88f0

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapidnbt-1.3.5-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1696ad81d3f72869a9925dc25dd13bf50de8632ce26b25f97f9e6fd368bca4b9
MD5 5f5ba46159e96b6dd353cc93fa78ae9f
BLAKE2b-256 aa6757fa1fef299ac29fe8b3a3424239c95ccdd6c67e0d3538dfc2207cf02816

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapidnbt-1.3.5-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b3c1d14bb5e94ece88e57cd89018bf20e3ea7d39b87d6cc46bec3ae7f262f02
MD5 7bea98bb6cff618d64cbe8a5621bcca8
BLAKE2b-256 b67cbb40a3f7b0e7da97c4ca1a4d79e5155ba87c4788dfed8617d1513238823e

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidnbt-1.3.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87594ec7c61e3f810b69b1add9839e92ad4e5d376af16ea5d86c39b21db1e0de
MD5 d6f8ecbe59d20070507d2f73052de156
BLAKE2b-256 5efe379862181190f96da44cd3f18346fdbaf8c504860d03c2dd0378f4626d00

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: rapidnbt-1.3.5-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 555.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidnbt-1.3.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b0f2e32627c0125872b95aec28ff51bf1e945660fd59abf33170d4c277dac7b2
MD5 0d89d93143778524414563d542be866e
BLAKE2b-256 db77845d58b787e28b6992eb03f5c7809d1d7b03c55d97defccd26cff844bf1d

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rapidnbt-1.3.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 556.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidnbt-1.3.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 44c2938ad118ab8a410dbc631b0c0a87f3b1eadce901582c033051493dc8fb65
MD5 64afdcf385997577aeef18eb1786653b
BLAKE2b-256 c31d947f1fc1358420e89c1a9be783f2e96aa3e3804a089e63132bf9052562ba

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapidnbt-1.3.5-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a5fe3601134415e8e128c1e4bbc8434fcbcad02c1c3777034ddf635bdd26a4d6
MD5 7994fee0841e7e86bf792403e43cc6e5
BLAKE2b-256 6a87e89623ca72e90d340cb7865e3e3fd16669988da8f5fef2c792dee5b3ad9b

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapidnbt-1.3.5-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 43947f59d15a5965c0897dcd127cbdb1a1ffdc87fa234747d5a5852dcfa71fb4
MD5 03f9c1ffc839a96229eff66f0a43c698
BLAKE2b-256 11c8d70328f28f2a65694da81638502f045b2b0b0e03f1ae6059229258f12f9a

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidnbt-1.3.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f1bda17d1f9350eb2e35c66d6393503ee1f433220beabd55a84472f23700dfa
MD5 0e530c2ac935826df888dda5dcf82ed5
BLAKE2b-256 8643173ecd403d448b613afd48fa1c202fffb9ae7e3fd74c0044f731513bed37

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: rapidnbt-1.3.5-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 555.5 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidnbt-1.3.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c46a1360f7b175217121d82fad627506009e668325c908deb4b3978f64cc72af
MD5 80bfd8de6b70b95c4fed0d28db9e79e1
BLAKE2b-256 c87d5e0b0f679e99ac2704eef356929602cf9f62fd8ef817789c4af71b4c8593

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rapidnbt-1.3.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 556.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidnbt-1.3.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 20e4ced22bf7c8d431c4970ac71ef16a5890d4312fe3c104eda555b163256ea4
MD5 ca1321833375852d8d90a30edb61e9b6
BLAKE2b-256 5603a368effd85a4434b95e23486e181a222e06f111e6dc4c5210d12916b84d1

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapidnbt-1.3.5-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6011d58413920ef14ced1ebd8eaabdd2b925bf93e07d230f1bc4cebd6de13cd
MD5 7db77662ee2eefb8f8ac923447f33b33
BLAKE2b-256 6034745a0bb3b392091a9ac8b760adf00ab50e6fe81f72aa599dc9abd0fe57c0

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapidnbt-1.3.5-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7f82ff17285d35fa756be71225409e96abe78162091a44d68d5cf1f2720b0946
MD5 b5d9f8ab31c3ce279189172bcf381336
BLAKE2b-256 4875f21bdc7644f548e7c36d1afc4d341277a640e1de5179141e370b0c140def

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidnbt-1.3.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f19e515dcdcc05028a6bbe848b3649739a716dd6647efd94bd573ca98ab19f91
MD5 5fc5cea30619c4ae6038bd7617c1bce6
BLAKE2b-256 895cba4b680e4e9e3e3b256350ccf6a66a49c808c44c46679a9e5f94fd281eeb

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: rapidnbt-1.3.5-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 551.4 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidnbt-1.3.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e01be60a6845eec4a8ccbe1ea2f18ea03776bcbfac13054c4334068723d8392d
MD5 8a0a1214097164a35f2cb34143127b69
BLAKE2b-256 e4cf7f3f9b9cd5c7d4fa0b06fc1f7b5ff1e0273d0568bf182ecec0c26c26b1ae

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rapidnbt-1.3.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 554.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidnbt-1.3.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 00e95a8872bf4fcbfb434e11f0470e64dcc51bc18e1e08cede7c9808698dc5af
MD5 9372f87add90d993113eff0810711682
BLAKE2b-256 8eac4a02df6cf84003ebe08f7b410e673c259882826c8a8a8d9611d049d5e9c9

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapidnbt-1.3.5-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 16073d94ed6c91ea4ee1f69ad5248b33fc191337e7800127d51f3ee52ea5db80
MD5 f60701221895a65d51597f213e9bddd2
BLAKE2b-256 e09da97a9e316af917b9e9488999b5b6e0f5dc3ad20698b2af7131d0c35129cb

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapidnbt-1.3.5-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c8868ff3e4a230b453fde7ef5bbca78a2cfd5fe1564407bac24340b44ec97578
MD5 b350622bc7a6129d5fc8a7d77550d530
BLAKE2b-256 0111e92e178c9f304e99ab0a80382353841dc176911f9ab38b28f5fa2856b1b1

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidnbt-1.3.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c8decbe0b37d84f023e297f7ef5fc9b4a7aa9b2c486ae490efd972fc1b71ced
MD5 b7dc4e276bc7172163be25e0e3a36627
BLAKE2b-256 3cbc82275edfd011b8b814314f96579b121ceccc1581939a25b1ee917b46fc3f

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: rapidnbt-1.3.5-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 550.5 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidnbt-1.3.5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 ee31e567844e6ef6fe6d5c04d228ad2e6298a5794d0db01f564c5e54bf42630a
MD5 aa20b02966de9ecc355f89437875ea87
BLAKE2b-256 cc631d63d9c4c11f28824833091195570db184dba4537c9c4eac2ff2093245fe

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rapidnbt-1.3.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 552.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidnbt-1.3.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 55e14e8aadb83afbeba573d972d3e252ece678c2257ac84cb847939b34af18c2
MD5 6da61cf0bb7ff45831152fecd367bfbb
BLAKE2b-256 7d97348efe05c421c9299172020020ce8560ae666b4c706262eaba53eafa9520

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapidnbt-1.3.5-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5f0532cf3d752ebd8f7d018c9e723d1c3adf1db3a33a9762db0e99027a9b22df
MD5 ccb01be0848ee38f003c5b9bf898273b
BLAKE2b-256 fe1374fe4c1d7dfde90611c92c9607fa7a605162a319663e1ddda9fdbedb83f1

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapidnbt-1.3.5-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3a38d215f49af6fb0fc2e1678aef54eaa2047b1699b9c3a6d933cd1909e93600
MD5 6dc0c48a2b98d52aff77c9aeef05b8cf
BLAKE2b-256 5f41e70cf456a20ee381b975f271b52a20a9939a967a87071bf300c8f047e9af

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidnbt-1.3.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 722623864357ac32c9810b9a6ef92269fc5e08c3072085ef4cfd832cd3b8a6af
MD5 e5f600b75da20a0b8facc48a17b5afba
BLAKE2b-256 84590fc15082930270542b56f417c01fafbd6a21d75c1ed36db093ea0162de0a

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: rapidnbt-1.3.5-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 527.4 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidnbt-1.3.5-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 9e0c8755a80e21b76f666ed32f9498b79347f338c669b455743a4ab2fe86e8cb
MD5 e8e1fe27364850318957924f5d412632
BLAKE2b-256 c615ee5f637891907650d0e55f97eb0af67c535eb1bc7cffb3a4c2849e02b9f2

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rapidnbt-1.3.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 597.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidnbt-1.3.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d2beb5f75a4e519ddd990274aed37d60a9e8eee06d01d073e2db5827431f9737
MD5 565b94569b6a49d93a806613766e6795
BLAKE2b-256 bd96fe20455f1c9b3f96de558c6e35f46574b2a3d7b1f9c742f33e7b1c97a0be

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapidnbt-1.3.5-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 afba754245e878bcaa87199084835f0bff970f34b70c6ad69f4d0ff5b9891075
MD5 98a628cb74da4dc878d7becc3058d508
BLAKE2b-256 0f8c06e2b76a6ab18cc9da7011da134991b7273513753eeb48de6a6e0f8b7a47

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapidnbt-1.3.5-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d0d8ae18e6b763ff0a242f4cd2f9557f484389ceed92611f585b802a9a3907a
MD5 e7b901d6d782693cb45af5810a7d6e8b
BLAKE2b-256 014957a74850089bc9df3b750a9de8f5a0df4b4f4852bdcc6f2f43a8ffa74b57

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidnbt-1.3.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2f2aa4c6d80a6b3c56923473433b097efcd8f8338b84a0b42a67d7419e5360d
MD5 f0438a59d9e9ea6db6d2613478be70c5
BLAKE2b-256 fa7cc10cf9371c4d9ec69513b5b563af9a0adddc5d6e714690ed72864508caeb

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: rapidnbt-1.3.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 552.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rapidnbt-1.3.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1d5d76b0694bf94561c3b25816620d4dd6edf9bf00c3de9e55ae3a6807085665
MD5 c6f9566fb4f15c074a247f56f74a42b9
BLAKE2b-256 c6cbfdbdf3fd28963319266e9630db0ea26aeba237f5cfa569a17cf48aa2309e

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp38-cp38-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapidnbt-1.3.5-cp38-cp38-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1cb9d7f2a2cbbb43457862cd1981fe91d207f93db719823b15cb32798e6b26fc
MD5 41bb4b7e67670e7e8db29e066407c917
BLAKE2b-256 266bbc584a598db8689af39460643964e6fc959f44e65dbc9c3f0064f916fde6

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapidnbt-1.3.5-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6fd33ed6b2c957983b174a399ffeab1ba078d8c1e4b156b9ae1018f2ef07c167
MD5 6ff0abb3ddd3d7dea8e82ddd3f3de917
BLAKE2b-256 b99650faebff69ad96aa61d69adce41aec22fdbf3c011ee33b88d6f48cc11495

See more details on using hashes here.

File details

Details for the file rapidnbt-1.3.5-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidnbt-1.3.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 438bc107dd54b63f906f807d14083a49e5c58eca8bcdd4c7a25d5900e5a38440
MD5 d6965b8ce111cbde5c841993b44a6bcd
BLAKE2b-256 2d0612f2fe8c4730c14f46c058f32e9890a2250a6daa05c4f82148d502dc8c76

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