An open API service indexing awesome lists of open source software.

https://github.com/gmr/bemis

A Minecraft file format reader that has all the time in the world
https://github.com/gmr/bemis

mincraft nbt nbt-parser python python3

Last synced: about 1 year ago
JSON representation

A Minecraft file format reader that has all the time in the world

Awesome Lists containing this project

README

          

Bemis
=====
A work-in-progress, multi-format Minecraft file reader for Python3 (that has
all the time in the world).

.. image:: https://travis-ci.org/gmr/bemis.svg?branch=master
:target: https://travis-ci.org/gmr/bemis

Example Usage
-------------

.. code:: Python3

import gzip

from bemis import nbt

with gzip.open('player.dat', 'rb') as handle:
name, data = nbt.load(handle)