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
- Host: GitHub
- URL: https://github.com/gmr/bemis
- Owner: gmr
- License: bsd-3-clause
- Created: 2018-07-20T03:02:08.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-20T04:33:29.000Z (almost 8 years ago)
- Last Synced: 2025-03-02T21:46:32.062Z (over 1 year ago)
- Topics: mincraft, nbt, nbt-parser, python, python3
- Language: Python
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Contributing: CONTRIBUTING.md
- License: LICENSE
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)