Skip to content

kemo14331/Python-NBS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python-NBS

A python library for reading NBS files

Based on NBS Version: 4(Current version used by Open Note Block Studio)

What is NBS

The .nbs format (Note Block Song) was created to work with Minecraft Note Block Studio, and contains data about how note blocks are laid out in the program to form a song.

From opennbs.org.

Installation

pip install Python-NBS

Usage

import python_nbs.nbs as nbs
import pprint
nbs_file = nbs.NBS("file.nbs")

# print song name
print(nbs_file.song_name)

# print all note blocks
pprint(nbs_file.note_blocks)

See docstring for the available instance variables.

About

A python library for reading NBS files

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages