File: __init__.py

package info (click to toggle)
python-tatsu 5.17.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,516 kB
  • sloc: python: 13,185; makefile: 127
file content (19 lines) | stat: -rw-r--r-- 290 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from .api import (
    compile,
    gencode,
    genmodel,
    parse,
    to_python_model,
    to_python_sourcecode,
)
from .cli import tatsu_main

__all__ = [
    'compile',
    'gencode',
    'genmodel',
    'tatsu_main',
    'parse',
    'to_python_model',
    'to_python_sourcecode',
]