Literature ReviewΒΆ

Example

>>> # Create, configure, and run the Text generator
>>> from techminer2.manuscript.literature_review import LiteratureReview
>>> (
...     LiteratureReview()
...     #
...     # TEXT:
...     .with_core_area("fintech")
...     .with_word_length(150)
...     #
...     # DATABASE:
...     .where_root_directory("examples/fintech/")
...     .where_database("main")
...     .where_record_years_range(None, None)
...     .where_record_citations_range(None, None)
...     .where_records_match(None)
...     .where_records_ordered_by(None)
...     #
...     .run()
... )