Example Usage
>>> import simplemma # get a word myword = 'masks' # decide which language to use and apply it on a word form >>> simplemma.lemmatize(myword, lang='en') 'mask' # grab a list of tokens >>> mytokens = ['Hier', 'sind', 'Vaccines'] >>> for token in mytokens: >>> simplemma.lemmatize(token, lang='de') 'hier' 'sein' 'Vaccines' # list comprehensions can be faster >>> [simplemma.lemmatize(t, lang='de') for t in mytokens] ['hier', 'sein', 'Vaccines']
See also
UltimateCMSWordlists
Open Source
📚 An ultimate collection wordlists of the best-known CMS…
John the Ripper
Open Source
Kali
Fast password cracker available for many operating systems. Auto-detects hash types, supports dictio…
Medusa
Open Source
Kali
Speedy, massively parallel, modular login brute-forcer. Supports AFP, CVS, FTP, HTTP, IMAP, MS-SQL, …
bopscrk
Open Source
Generate smart and powerful wordlists…
CeWL
Open Source
Kali
Custom Word List generator that spiders a target website to build a wordlist based on the site's con…
bruteforce-database
Open Source
A collection of wordlists for security testing, penetration testing, and password analysis.…