rustine 0.1.1

High-performance Gel syntax parser transforming to JSON/XML (Rust + PyO3)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# Rustine — high-performance Gel syntax parser.
#
# This package provides `from Rustine.util import compile` etc., delegating
# to the native Rust `rustine` extension module built with PyO3.

from . import rustine as _native

__version__ = _native.__version__

INDENT_WIDTH = 4
INDENT = ' ' * INDENT_WIDTH
SEARCH_WINDOW = 1000