Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 224 Bytes

README.md

File metadata and controls

18 lines (12 loc) · 224 Bytes

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)