{"library":"spanishconjugator","title":"Spanish Conjugator","type":"library","description":"Spanish Conjugator is a Python library designed to conjugate Spanish verbs. It provides a `Conjugator` class with a `conjugate` method that takes a root verb, tense, mood, and an optional pronoun to return the correctly conjugated form. The library is actively maintained and currently at version 2.3.9474, with a release cadence that appears to be driven by development cycles rather than a fixed schedule.","language":"python","status":"active","last_verified":"Thu Apr 16","install":{"commands":["pip install spanishconjugator"],"cli":null},"imports":["from spanishconjugator import Conjugator"],"auth":{"required":false,"env_vars":[]},"links":{"homepage":null,"github":"https://github.com/Benedict-Carling/spanish-conjugator","docs":null,"changelog":null,"pypi":"https://pypi.org/project/spanishconjugator/","npm":null,"openapi_spec":null,"status_page":null,"smithery":null},"quickstart":{"code":"from spanishconjugator import Conjugator\n\n# Conjugate 'hablar' in imperfect indicative for 'yo'\nimperfect_conjugation = Conjugator().conjugate('hablar', 'imperfect', 'indicative', 'yo')\nprint(f\"'hablar' in imperfect indicative for 'yo': {imperfect_conjugation}\")\n\n# Conjugate 'comer' in present indicative for 'nosotros'\npresent_conjugation = Conjugator().conjugate('comer', 'present', 'indicative', 'nosotros')\nprint(f\"'comer' in present indicative for 'nosotros': {present_conjugation}\")\n\n# Conjugate 'vivir' in future simple for 'ellos'\nfuture_conjugation = Conjugator().conjugate('vivir', 'future', 'indicative', 'ellos')\nprint(f\"'vivir' in future simple for 'ellos': {future_conjugation}\")\n\n# Conjugate 'hablar' in present indicative without a pronoun (optional parameter)\npresent_indicative_no_pronoun = Conjugator().conjugate('hablar', 'present', 'indicative')\nprint(f\"'hablar' in present indicative (no pronoun): {present_indicative_no_pronoun}\")","lang":"python","description":"This quickstart demonstrates how to import the `Conjugator` class and use its `conjugate` method. It shows examples for different tenses, moods, and pronouns, including the case where the pronoun is optional for the present indicative tense.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}