Integrity CheckΒΆ
- Smoke tests:
>>> from techminer2.thesaurus.user import InitializeThesaurus >>> ( ... InitializeThesaurus() ... .with_thesaurus_file("demo.the.txt") ... .with_field("raw_descriptors") ... .where_root_directory("examples/fintech/") ... .using_colored_output(False) ... .run() ... )
>>> # Creates, configures, an run the integrity checker >>> ( ... IntegrityCheck() ... .with_thesaurus_file("demo.the.txt") ... .with_field("raw_descriptors") ... .where_root_directory("examples/fintech/") ... .using_colored_output(False) ... .run() ... )