├── .github └── workflows │ ├── pypi.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── docs ├── cookbook.ipynb ├── index.ipynb └── ref.ipynb ├── requirements ├── ci.txt └── dev.txt ├── setup.cfg ├── setup.py ├── tests ├── test_interpretation.py ├── test_morph.py ├── test_person.py ├── test_pipeline.py ├── test_predicate.py ├── test_relations.py ├── test_rule.py ├── test_tagger.py └── test_tokenizer.py └── yargy ├── __init__.py ├── api.py ├── check.py ├── dot.py ├── interpretation ├── __init__.py ├── attribute.py ├── fact.py ├── interpretator.py └── normalizer.py ├── morph.py ├── parser.py ├── pipelines.py ├── predicates ├── __init__.py ├── bank.py └── constructors.py ├── record.py ├── relations ├── __init__.py ├── bank.py ├── constructors.py └── graph.py ├── rule ├── __init__.py ├── bnf.py ├── constructors.py └── transformators.py ├── span.py ├── tagger.py ├── token.py ├── tokenizer.py ├── tree ├── __init__.py ├── constructors.py └── transformators.py └── visitor.py /.github/workflows/pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/.github/workflows/pypi.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include * * 2 | prune .git 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/README.md -------------------------------------------------------------------------------- /docs/cookbook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/docs/cookbook.ipynb -------------------------------------------------------------------------------- /docs/index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/docs/index.ipynb -------------------------------------------------------------------------------- /docs/ref.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/docs/ref.ipynb -------------------------------------------------------------------------------- /requirements/ci.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/requirements/ci.txt -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- 1 | ipykernel 2 | nbconvert 3 | pytest 4 | flake8 5 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_interpretation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/tests/test_interpretation.py -------------------------------------------------------------------------------- /tests/test_morph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/tests/test_morph.py -------------------------------------------------------------------------------- /tests/test_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/tests/test_person.py -------------------------------------------------------------------------------- /tests/test_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/tests/test_pipeline.py -------------------------------------------------------------------------------- /tests/test_predicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/tests/test_predicate.py -------------------------------------------------------------------------------- /tests/test_relations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/tests/test_relations.py -------------------------------------------------------------------------------- /tests/test_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/tests/test_rule.py -------------------------------------------------------------------------------- /tests/test_tagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/tests/test_tagger.py -------------------------------------------------------------------------------- /tests/test_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/tests/test_tokenizer.py -------------------------------------------------------------------------------- /yargy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/__init__.py -------------------------------------------------------------------------------- /yargy/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/api.py -------------------------------------------------------------------------------- /yargy/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/check.py -------------------------------------------------------------------------------- /yargy/dot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/dot.py -------------------------------------------------------------------------------- /yargy/interpretation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/interpretation/__init__.py -------------------------------------------------------------------------------- /yargy/interpretation/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/interpretation/attribute.py -------------------------------------------------------------------------------- /yargy/interpretation/fact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/interpretation/fact.py -------------------------------------------------------------------------------- /yargy/interpretation/interpretator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/interpretation/interpretator.py -------------------------------------------------------------------------------- /yargy/interpretation/normalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/interpretation/normalizer.py -------------------------------------------------------------------------------- /yargy/morph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/morph.py -------------------------------------------------------------------------------- /yargy/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/parser.py -------------------------------------------------------------------------------- /yargy/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/pipelines.py -------------------------------------------------------------------------------- /yargy/predicates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/predicates/__init__.py -------------------------------------------------------------------------------- /yargy/predicates/bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/predicates/bank.py -------------------------------------------------------------------------------- /yargy/predicates/constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/predicates/constructors.py -------------------------------------------------------------------------------- /yargy/record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/record.py -------------------------------------------------------------------------------- /yargy/relations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/relations/__init__.py -------------------------------------------------------------------------------- /yargy/relations/bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/relations/bank.py -------------------------------------------------------------------------------- /yargy/relations/constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/relations/constructors.py -------------------------------------------------------------------------------- /yargy/relations/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/relations/graph.py -------------------------------------------------------------------------------- /yargy/rule/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/rule/__init__.py -------------------------------------------------------------------------------- /yargy/rule/bnf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/rule/bnf.py -------------------------------------------------------------------------------- /yargy/rule/constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/rule/constructors.py -------------------------------------------------------------------------------- /yargy/rule/transformators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/rule/transformators.py -------------------------------------------------------------------------------- /yargy/span.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/span.py -------------------------------------------------------------------------------- /yargy/tagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/tagger.py -------------------------------------------------------------------------------- /yargy/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/token.py -------------------------------------------------------------------------------- /yargy/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/tokenizer.py -------------------------------------------------------------------------------- /yargy/tree/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/tree/__init__.py -------------------------------------------------------------------------------- /yargy/tree/constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/tree/constructors.py -------------------------------------------------------------------------------- /yargy/tree/transformators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/tree/transformators.py -------------------------------------------------------------------------------- /yargy/visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natasha/yargy/HEAD/yargy/visitor.py --------------------------------------------------------------------------------