├── .github └── workflows │ ├── build-wheels.yml │ └── run-tests.yml ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.md ├── cPyparsing.pyx ├── constants.py ├── pyproject.toml ├── setup.py └── tests ├── Makefile ├── cPyparsing_test.py ├── coconut_cPyparsing_test.ps1 ├── coconut_pyparsing_test.ps1 ├── examples ├── 0README.html ├── AcManForm.dfm ├── LAparser.py ├── Setup.ini ├── SimpleCalc.py ├── SingleForm.dfm ├── TAP.py ├── __init__.py ├── adventureEngine.py ├── antlr_grammar.py ├── antlr_grammar_tests.py ├── apicheck.py ├── btpyparse.py ├── builtin_parse_action_demo.py ├── cLibHeader.py ├── chemicalFormulas.py ├── commasep.py ├── configParse.py ├── cpp_enum_parser.py ├── datetimeParseActions.py ├── decaf_parser.py ├── deltaTime.py ├── delta_time.py ├── dfmparse.py ├── dhcpd_leases_parser.py ├── dictExample.py ├── dictExample2.py ├── ebnf.py ├── ebnftest.py ├── eval_arith.py ├── excelExpr.py ├── fourFn.py ├── gen_ctypes.py ├── getNTPserversNew.py ├── greeting.py ├── greetingInGreek.py ├── greetingInKorean.py ├── groupUsingListAllMatches.py ├── holaMundo.py ├── htmlStripper.py ├── htmlTableParser.py ├── httpServerLogParser.py ├── idlParse.py ├── include_preprocessor.py ├── indentedGrammarExample.py ├── invRegex.py ├── javascript_grammar.g ├── jsonParser.py ├── linenoExample.py ├── list1.py ├── listAllMatches.py ├── lucene_grammar.py ├── macroExpander.py ├── matchPreviousDemo.py ├── mozilla.ics ├── mozillaCalendarParser.py ├── nested.py ├── nested_markup.py ├── numerics.py ├── oc.py ├── parseListString.py ├── parsePythonValue.py ├── parseResultsSumExample.py ├── parseTabularData.py ├── partial_gene_match.py ├── pgn.py ├── position.py ├── protobuf_parser.py ├── pymicko.py ├── pythonGrammarParser.py ├── rangeCheck.py ├── readJson.py ├── removeLineBreaks.py ├── romanNumerals.py ├── rosettacode.py ├── scanExamples.py ├── searchParserAppDemo.py ├── searchparser.py ├── select_parser.py ├── sexpParser.py ├── shapes.py ├── simpleArith.py ├── simpleBool.py ├── simpleSQL.py ├── simpleWiki.py ├── snmp_api.h ├── sparser.py ├── sql2dot.py ├── stackish.py ├── statemachine │ ├── documentSignoffDemo.py │ ├── documentsignoffstate.pystate │ ├── libraryBookDemo.py │ ├── librarybookstate.pystate │ ├── statemachine.py │ ├── trafficLightDemo.py │ ├── trafficlightstate.pystate │ ├── vending_machine.py │ ├── video_demo.py │ └── videostate.pystate ├── test_bibparse.py ├── urlExtractor.py ├── urlExtractorNew.py ├── verilogParse.py ├── withAttribute.py └── wordsToNum.py ├── mock_c_as_py └── pyparsing.py ├── mock_py_as_c └── cPyparsing.py ├── pyparsing_test.ps1 ├── run_coconut_with_cPyparsing.ps1 └── test ├── __init__.py ├── jsonParserTests.py ├── karthik.ini └── parsefiletest_input_file.txt /.github/workflows/build-wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/.github/workflows/build-wheels.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/README.md -------------------------------------------------------------------------------- /cPyparsing.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/cPyparsing.pyx -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/constants.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/setup.py -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/cPyparsing_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/cPyparsing_test.py -------------------------------------------------------------------------------- /tests/coconut_cPyparsing_test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/coconut_cPyparsing_test.ps1 -------------------------------------------------------------------------------- /tests/coconut_pyparsing_test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/coconut_pyparsing_test.ps1 -------------------------------------------------------------------------------- /tests/examples/0README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/0README.html -------------------------------------------------------------------------------- /tests/examples/AcManForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/AcManForm.dfm -------------------------------------------------------------------------------- /tests/examples/LAparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/LAparser.py -------------------------------------------------------------------------------- /tests/examples/Setup.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/Setup.ini -------------------------------------------------------------------------------- /tests/examples/SimpleCalc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/SimpleCalc.py -------------------------------------------------------------------------------- /tests/examples/SingleForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/SingleForm.dfm -------------------------------------------------------------------------------- /tests/examples/TAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/TAP.py -------------------------------------------------------------------------------- /tests/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/examples/adventureEngine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/adventureEngine.py -------------------------------------------------------------------------------- /tests/examples/antlr_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/antlr_grammar.py -------------------------------------------------------------------------------- /tests/examples/antlr_grammar_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/antlr_grammar_tests.py -------------------------------------------------------------------------------- /tests/examples/apicheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/apicheck.py -------------------------------------------------------------------------------- /tests/examples/btpyparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/btpyparse.py -------------------------------------------------------------------------------- /tests/examples/builtin_parse_action_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/builtin_parse_action_demo.py -------------------------------------------------------------------------------- /tests/examples/cLibHeader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/cLibHeader.py -------------------------------------------------------------------------------- /tests/examples/chemicalFormulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/chemicalFormulas.py -------------------------------------------------------------------------------- /tests/examples/commasep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/commasep.py -------------------------------------------------------------------------------- /tests/examples/configParse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/configParse.py -------------------------------------------------------------------------------- /tests/examples/cpp_enum_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/cpp_enum_parser.py -------------------------------------------------------------------------------- /tests/examples/datetimeParseActions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/datetimeParseActions.py -------------------------------------------------------------------------------- /tests/examples/decaf_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/decaf_parser.py -------------------------------------------------------------------------------- /tests/examples/deltaTime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/deltaTime.py -------------------------------------------------------------------------------- /tests/examples/delta_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/delta_time.py -------------------------------------------------------------------------------- /tests/examples/dfmparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/dfmparse.py -------------------------------------------------------------------------------- /tests/examples/dhcpd_leases_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/dhcpd_leases_parser.py -------------------------------------------------------------------------------- /tests/examples/dictExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/dictExample.py -------------------------------------------------------------------------------- /tests/examples/dictExample2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/dictExample2.py -------------------------------------------------------------------------------- /tests/examples/ebnf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/ebnf.py -------------------------------------------------------------------------------- /tests/examples/ebnftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/ebnftest.py -------------------------------------------------------------------------------- /tests/examples/eval_arith.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/eval_arith.py -------------------------------------------------------------------------------- /tests/examples/excelExpr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/excelExpr.py -------------------------------------------------------------------------------- /tests/examples/fourFn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/fourFn.py -------------------------------------------------------------------------------- /tests/examples/gen_ctypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/gen_ctypes.py -------------------------------------------------------------------------------- /tests/examples/getNTPserversNew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/getNTPserversNew.py -------------------------------------------------------------------------------- /tests/examples/greeting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/greeting.py -------------------------------------------------------------------------------- /tests/examples/greetingInGreek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/greetingInGreek.py -------------------------------------------------------------------------------- /tests/examples/greetingInKorean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/greetingInKorean.py -------------------------------------------------------------------------------- /tests/examples/groupUsingListAllMatches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/groupUsingListAllMatches.py -------------------------------------------------------------------------------- /tests/examples/holaMundo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/holaMundo.py -------------------------------------------------------------------------------- /tests/examples/htmlStripper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/htmlStripper.py -------------------------------------------------------------------------------- /tests/examples/htmlTableParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/htmlTableParser.py -------------------------------------------------------------------------------- /tests/examples/httpServerLogParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/httpServerLogParser.py -------------------------------------------------------------------------------- /tests/examples/idlParse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/idlParse.py -------------------------------------------------------------------------------- /tests/examples/include_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/include_preprocessor.py -------------------------------------------------------------------------------- /tests/examples/indentedGrammarExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/indentedGrammarExample.py -------------------------------------------------------------------------------- /tests/examples/invRegex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/invRegex.py -------------------------------------------------------------------------------- /tests/examples/javascript_grammar.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/javascript_grammar.g -------------------------------------------------------------------------------- /tests/examples/jsonParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/jsonParser.py -------------------------------------------------------------------------------- /tests/examples/linenoExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/linenoExample.py -------------------------------------------------------------------------------- /tests/examples/list1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/list1.py -------------------------------------------------------------------------------- /tests/examples/listAllMatches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/listAllMatches.py -------------------------------------------------------------------------------- /tests/examples/lucene_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/lucene_grammar.py -------------------------------------------------------------------------------- /tests/examples/macroExpander.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/macroExpander.py -------------------------------------------------------------------------------- /tests/examples/matchPreviousDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/matchPreviousDemo.py -------------------------------------------------------------------------------- /tests/examples/mozilla.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/mozilla.ics -------------------------------------------------------------------------------- /tests/examples/mozillaCalendarParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/mozillaCalendarParser.py -------------------------------------------------------------------------------- /tests/examples/nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/nested.py -------------------------------------------------------------------------------- /tests/examples/nested_markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/nested_markup.py -------------------------------------------------------------------------------- /tests/examples/numerics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/numerics.py -------------------------------------------------------------------------------- /tests/examples/oc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/oc.py -------------------------------------------------------------------------------- /tests/examples/parseListString.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/parseListString.py -------------------------------------------------------------------------------- /tests/examples/parsePythonValue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/parsePythonValue.py -------------------------------------------------------------------------------- /tests/examples/parseResultsSumExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/parseResultsSumExample.py -------------------------------------------------------------------------------- /tests/examples/parseTabularData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/parseTabularData.py -------------------------------------------------------------------------------- /tests/examples/partial_gene_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/partial_gene_match.py -------------------------------------------------------------------------------- /tests/examples/pgn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/pgn.py -------------------------------------------------------------------------------- /tests/examples/position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/position.py -------------------------------------------------------------------------------- /tests/examples/protobuf_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/protobuf_parser.py -------------------------------------------------------------------------------- /tests/examples/pymicko.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/pymicko.py -------------------------------------------------------------------------------- /tests/examples/pythonGrammarParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/pythonGrammarParser.py -------------------------------------------------------------------------------- /tests/examples/rangeCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/rangeCheck.py -------------------------------------------------------------------------------- /tests/examples/readJson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/readJson.py -------------------------------------------------------------------------------- /tests/examples/removeLineBreaks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/removeLineBreaks.py -------------------------------------------------------------------------------- /tests/examples/romanNumerals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/romanNumerals.py -------------------------------------------------------------------------------- /tests/examples/rosettacode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/rosettacode.py -------------------------------------------------------------------------------- /tests/examples/scanExamples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/scanExamples.py -------------------------------------------------------------------------------- /tests/examples/searchParserAppDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/searchParserAppDemo.py -------------------------------------------------------------------------------- /tests/examples/searchparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/searchparser.py -------------------------------------------------------------------------------- /tests/examples/select_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/select_parser.py -------------------------------------------------------------------------------- /tests/examples/sexpParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/sexpParser.py -------------------------------------------------------------------------------- /tests/examples/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/shapes.py -------------------------------------------------------------------------------- /tests/examples/simpleArith.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/simpleArith.py -------------------------------------------------------------------------------- /tests/examples/simpleBool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/simpleBool.py -------------------------------------------------------------------------------- /tests/examples/simpleSQL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/simpleSQL.py -------------------------------------------------------------------------------- /tests/examples/simpleWiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/simpleWiki.py -------------------------------------------------------------------------------- /tests/examples/snmp_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/snmp_api.h -------------------------------------------------------------------------------- /tests/examples/sparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/sparser.py -------------------------------------------------------------------------------- /tests/examples/sql2dot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/sql2dot.py -------------------------------------------------------------------------------- /tests/examples/stackish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/stackish.py -------------------------------------------------------------------------------- /tests/examples/statemachine/documentSignoffDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/statemachine/documentSignoffDemo.py -------------------------------------------------------------------------------- /tests/examples/statemachine/documentsignoffstate.pystate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/statemachine/documentsignoffstate.pystate -------------------------------------------------------------------------------- /tests/examples/statemachine/libraryBookDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/statemachine/libraryBookDemo.py -------------------------------------------------------------------------------- /tests/examples/statemachine/librarybookstate.pystate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/statemachine/librarybookstate.pystate -------------------------------------------------------------------------------- /tests/examples/statemachine/statemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/statemachine/statemachine.py -------------------------------------------------------------------------------- /tests/examples/statemachine/trafficLightDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/statemachine/trafficLightDemo.py -------------------------------------------------------------------------------- /tests/examples/statemachine/trafficlightstate.pystate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/statemachine/trafficlightstate.pystate -------------------------------------------------------------------------------- /tests/examples/statemachine/vending_machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/statemachine/vending_machine.py -------------------------------------------------------------------------------- /tests/examples/statemachine/video_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/statemachine/video_demo.py -------------------------------------------------------------------------------- /tests/examples/statemachine/videostate.pystate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/statemachine/videostate.pystate -------------------------------------------------------------------------------- /tests/examples/test_bibparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/test_bibparse.py -------------------------------------------------------------------------------- /tests/examples/urlExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/urlExtractor.py -------------------------------------------------------------------------------- /tests/examples/urlExtractorNew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/urlExtractorNew.py -------------------------------------------------------------------------------- /tests/examples/verilogParse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/verilogParse.py -------------------------------------------------------------------------------- /tests/examples/withAttribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/withAttribute.py -------------------------------------------------------------------------------- /tests/examples/wordsToNum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/examples/wordsToNum.py -------------------------------------------------------------------------------- /tests/mock_c_as_py/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/mock_c_as_py/pyparsing.py -------------------------------------------------------------------------------- /tests/mock_py_as_c/cPyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/mock_py_as_c/cPyparsing.py -------------------------------------------------------------------------------- /tests/pyparsing_test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/pyparsing_test.ps1 -------------------------------------------------------------------------------- /tests/run_coconut_with_cPyparsing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/run_coconut_with_cPyparsing.ps1 -------------------------------------------------------------------------------- /tests/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test/jsonParserTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/test/jsonParserTests.py -------------------------------------------------------------------------------- /tests/test/karthik.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evhub/cpyparsing/HEAD/tests/test/karthik.ini -------------------------------------------------------------------------------- /tests/test/parsefiletest_input_file.txt: -------------------------------------------------------------------------------- 1 | 123 456 789 --------------------------------------------------------------------------------