pyshaun

SHAUN implementation


Keywords
notation, language
License
MIT
Install
pip install pyshaun==0.1.6

Documentation

Installation

pip install pyshaun

How to use quickly

import pyshaun

raw = pyshaun.load('{ hello : "world" }')
from_file = pyshaun.load_file('myfile.sn')

print(raw['hello'])
print(from_file)