{"library":"simplemma","title":"Simplemma","description":"A lightweight multilingual lemmatization and language detection library for Python. Current version: 1.1.2. Release cadence: irregular, with major breaking changes at v1.0.0. Requires Python >=3.8.","language":"python","status":"active","last_verified":"Sat May 09","install":{"commands":["pip install simplemma"],"cli":null},"imports":["from simplemma import lemmatize","from simplemma import is_known_word","from simplemma.language_detector import LanguageDetector"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from simplemma import lemmatize\n\n# Lemmatize a single word\nresult = lemmatize('running', lang='en')\nprint(result)  # 'run'\n\n# With greedy mode (more aggressive rule-based lemmatization)\nresult_greedy = lemmatize('better', lang='en', greedy=True)\nprint(result_greedy)  # 'good'","lang":"python","description":"Basic usage of simplemma for lemmatizing a word with optional greedy mode.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}