avakar / pycson

A Coffescript Object Notation (CSON) parser for Python 2 and Python 3.
Other
55 stars 7 forks source link

pycson

Build Status

A python parser for the Coffeescript Object Notation (CSON).

Installation

The parser is tested on Python 2.7 and 3.5.

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}

The language

There is not formal definition of CSON, only an informal note in one project's readme. Informally, CSON is a JSON, but with a Coffeescript syntax. Sadly Coffescript has no formal grammar either; it instead has a canonical implementation.

This means that bugs in the implementation translate into bugs in the language itself.

Worse, this particular implementation inserts a "rewriter" between the typical lexer/parser pair, purporting that it makes the grammar simpler. Unfortunately, it adds weird corner cases to the language.

This parser does away with the corner cases, in exchange for changing the semantics of documents in a few unlikely circumstances. In other words, some documents may be parsed differently by the Coffescript parser and pycson.

Here are some important highlights (see the formal grammar for details).

I believe the above rules make the parse unambiguous.

This example demonstrates the effect of indentation.

# An array containing a single element: an object with three keys.
[
  a: 1
  b: 2
  c: 3
]

# An array containing three elements: objects with one key.
[
  a: 1
   b: 2
  c: 3
]

# An array containing two objects, the first of which having one key.
[ a: 1
  b: 2
  c: 3 ]

Note that pycson can parse all JSON documents correctly (CoffeeScript can't because of whitespace and string interpolations).