First ParagraphΒΆ
Example
>>> # Create, configure, and run the Text generator
>>> from techminer2.manuscript.introduction.first_paragraph import FirstParagraph
>>> (
... FirstParagraph()
... #
... # TEXT:
... .with_abstract_having_pattern(['FINTECH', 'FINANCIAL_TECHNOLOGIES'])
... .with_word_length((200, 400))
... #
... # 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()
... )