forked from teleological/camxes-py
-
Notifications
You must be signed in to change notification settings - Fork 4
Pure python "camxes" PEG parser for the lojban language
License
lojban/camxes-py
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
camxes-py is a pure Python implementation of the lojban "camxes" PEG parser. From v0.8.1, camxes-py uses v137 camxes morphology. USAGE ===== By default, input is parsed and transformed to the output format used by the ilmentufa implementation of camxes.js: python camxes.py "coi munje" To parse potentially non-grammatical texts into cmevla, brivla, cmavo and non-lojban words, specify the "camxes-morphology" transformation and the "morphology" starting expression: python camxes.py -t camxes-morphology "coi munje" To parse using jbovlaste's categories, which add bu-letteral, zei-lujvo, and cmavo-compound to the standard morphological ones, use the "vlatai" rule transformation: python camxes.py -t vlatai -r vlatai "coi zei munje bu" OPTIONS ======= The --transformer (-t) option controls the transformation of the parse tree. Supported options include: raw, debug, node-coverage, camxes-morphology, vlatai, and camxes-json (default) The --serializer (-s) option controls the serialization of the transformed parse tree. Supported options include: xml, json, json-pretty, and json-compact (default) The --rule (-r) option is used to specify the starting rule or expression used to parsed the text. By default, the first rule of the grammar ("text") is used. DEPENDENCIES ============ camxes-py depends on the "parsimonious" PEG parser library, and has been tested under CPython 2.7.4 and PyPy 2.2.1. To run the IRC bot, the "twisted" library is also required. LIBRARY USAGE ============= Basic parsing: >>> import camxes_py >>> camxes_py.parse("mi klama") ['text', ['text_1', ['paragraphs', ['paragraph', ['statement', ['statement_1', ['statement_2', ['statement_3', ['sentence', [['terms', ['terms_1', ['terms_2', ['abs_term', ['abs_term_1', ['sumti', ['sumti_1', ['sumti_2', ['sumti_3', ['sumti_4', ['sumti_5', ['sumti_6', ['KOhA_clause', [['KOhA', 'mi']]]]]]]]]]]]]]], ['CU']], ['bridi_tail', ['bridi_tail_1', ['bridi_tail_2', ['bridi_tail_3', ['selbri', ['selbri_1', ['selbri_2', ['selbri_3', ['selbri_4', ['selbri_5', ['selbri_6', ['tanru_unit', ['tanru_unit_1', ['tanru_unit_2', ['BRIVLA_clause', [['BRIVLA', ['gismu', 'klama']]]]]]]]]]]]]], ['tail_terms', ['VAU']]]]]]]]]]]]]]] Partial parsing: >>> import camxes_py >>> text, node = camxes_py.match("klama ku ku", None, None, None, True) >>> text ['text', ['text_1', ['paragraphs', ['paragraph', ['statement', ['statement_1', ['statement_2', ['statement_3', ['sentence', ['bridi_tail', ['bridi_tail_1', ['bridi_tail_2', ['bridi_tail_3', ['selbri', ['selbri_1', ['selbri_2', ['selbri_3', ['selbri_4', ['selbri_5', ['selbri_6', ['tanru_unit', ['tanru_unit_1', ['tanru_unit_2', ['BRIVLA_clause', [['BRIVLA', ['gismu', 'klama']]]]]]]]]]]]]], ['tail_terms', ['VAU']]]]]]]]]]]]]]] >>> node.end 6 >>> node.end < len("klama ku ku") True original-camxes-style parsing: >>> import camxes_py >>> from camxes_py.transformers import minimal >>> minimal_transformer = minimal.Transformer() >>> text = camxes_py.match("mi la cmen broda fu'ivla li 1 la'o gy english words gy", None, None, minimal_transformer) >>> text ['sentence', [['terms', [['KOhA', 'mi'], ['sumti_6', [['LA', 'la'], ['CMEVLA', 'cmen']]]]], ['bridi_tail_3', [['selbri_3', [['gismu', 'broda'], ['lujvo', "fu'ivla"]]], ['nonabs_terms', [['li_clause', [['LI', 'li'], ['PA', '1']]], ['ZOI_pre', [['ZOI', "la'o"], ['BY', 'gy'], [['zoi_word', 'english '], ['zoi_word', 'words ']], ['BY', 'gy']]]]]]]]] >>> Parsing that isn't incredibly slow; the "parser =" line takes a bunch of time, but the subsequent .parse and .match calls will be fast if you pass the parser in: >>> import camxes_py >>> from camxes_py.parsers import camxes_ilmen >>> from camxes_py.transformers import minimal >>> parser = camxes_ilmen.Parser(None) >>> minimal_transformer = minimal.Transformer() >>> text, node = camxes_py.match("mi klama le zarci", parser, None, minimal_transformer, True) >>> text ['sentence', [['KOhA', 'mi'], ['bridi_tail_3', [['gismu', 'klama'], ['sumti_6', [['LE', 'le'], ['gismu', 'zarci']]]]]]] >>> text, node = camxes_py.match("mi la cmen broda fu'ivla li 1 la'o gy english words gy", parser, None, minimal_transformer, True) >>> text ['sentence', [['terms', [['KOhA', 'mi'], ['sumti_6', [['LA', 'la'], ['CMEVLA', 'cmen']]]]], ['bridi_tail_3', [['selbri_3', [['gismu', 'broda'], ['lujvo', "fu'ivla"]]], ['nonabs_terms', [['li_clause', [['LI', 'li'], ['PA', '1']]], ['ZOI_pre', [['ZOI', "la'o"], ['BY', 'gy'], [['zoi_word', 'english '], ['zoi_word', 'words ']], ['BY', 'gy']]]]]]]]] TESTING ======= camxes-py is tested with the corpus of more than 22K test sentences that Robin Lee Powell originally assembled to test the first (Java Rats!) camxes implementation. These sentences have been converted to UTF-8, indexed by MD5/base64 token, deduplicated and packaged in "sentences.json" in the "test" directory. Each sentence is marked "GOOD" or "BAD" if it was so-commented in the original source file; other sentences are marked "UNKNOWN". Running "test.py" will parse all of the test sentences, comparing the results to the output of ilmentufa camxes.js (cached in "camxes_ilmen_js.json") and regenerating "camxes_ilmen_py.json". Running "cover.py" will produce a json-formatted list of the nodes produced by parsing the test corpus, ordered by descending frequency and expression name. LICENSE ======= The scripts and modules in this implementation may be copied, modified, and distributed under the terms of the accompanied license, "LICENSE.txt". ACKNOWLEDGMENTS =============== camxes-py draws on prior implementations of the "camxes" PEG parser, including the original Java Rats! implementation by Robin Lee Powell and Jorge Llambías, the JavaScript port (camxes.js) by Masato Hagiwara. It owes an immediate debt to the "ilmentufa" parser by Ilmen, which corrected camxes' handling of sumti tcita and extended camxes.js with suppport for ZOI quotations and elided terminator detection. The camxes-py IRC bot is based loosely on the "valsi" and "gerna" bots written by Dag Odenhall for "vlasisku".
About
Pure python "camxes" PEG parser for the lojban language
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published
Languages
- Python 100.0%