Usage ===== Eager to get started? This page gives a good introduction in how to get started with dasha. First, make sure that: * dasha is installed * dasha is up-to-date Let's get started with some simple examples. Example ------- .. code-block:: python from dasha import Finder text = 'Cum medicina tolerare, omnes \ historiaes gratia regius, festus solemes.' one_of_word = 'festus' finder = Finder() finder.search(text, one_of_word) # return 1(integer) text = 'test test tes text bla bla' words = ['tes', 'bla', 'ter'] # must be a list finder.search_group(text, words) # return {'tes': 3, 'ter': 0, 'bla': 2}