Everyone is welcome to improve this documentation by editing python.eno and submitting a Pull Request!

Installation

pip install enopy

Getting started

Create an eno document, for instance intro.eno:

Greeting: Hello World!

A minimal example to read this file with enopy:

>>> from enopy import parse
>>> with open('intro.eno', 'r') as file:
...   document = parse(file.read())
>>> document.field('Greeting')
'Hello World!'

Links

Package on PyPI - https://pypi.org/project/enopy/
Repository on github - https://github.com/eno-lang/enopy/