Skip to content

mobiusklein/pycson

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

pycson

This is a python parser for the Coffeescript Object Notation (CSON).

Install:

pip install cson

The interface is the same as for the standard json package.

>>> import cson
>>> cson.loads('a: 1')
{'a': 1}
>>> with open('file.cson', 'rb') as fin:
...     obj = cson.load(fin)
>>> obj
{'a': 1}

About

A Coffescript Object Notation parser for Python.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 92.6%
  • CoffeeScript 7.4%