Skip to content

philipdexter/pycue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyCUE

$ python
Python 3.8.2 (default, Apr  8 2020, 14:31:25)
[GCC 9.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import cue
>>> cue.loads('''
... spec :: {
...   a: int
...   b: <3
... }
... one: spec & {
...   a: 3
...   b: 2
... }
... two: spec & {
...   a: 11 + 12
...   b: 1
... }
... ''')
{'one': {'a': 3, 'b': 2}, 'two': {'a': 23, 'b': 1}}

Running

$ make golibcue
$ pip install requirements.txt
$ python example.py
$ python -m pytest

Releases

No releases published

Packages

No packages published

Languages