File | Date | Author | Commit |
---|---|---|---|
Deutschconjugation | 2020-11-29 |
![]() |
[aa460d] Better return method descriptors |
Deutschubersetzen | 2020-11-30 |
![]() |
[f8c5c5] Added the finished Dictionary CSV |
Francaisconjugation | 2020-11-24 |
![]() |
[e35300] Refined TODO |
.gitignore | 2020-11-29 |
![]() |
[2d7d1b] Updated CLI |
LICENSE | 2020-11-12 |
![]() |
[8e066b] Update LICENSE |
MANIFEST.in | 2020-11-01 |
![]() |
[c703f5] Deutsch module ready |
README.md | 2020-11-29 |
![]() |
[463bb6] Update README |
install | 2020-11-23 |
![]() |
[d1c5f1] Update install |
setup.py | 2020-11-23 |
![]() |
[8793b4] preparation for update v1.2.0 |
Hallo!
Have you ever had trouble conjguating your verbs? Forgot "machen" in present-perfect, or maybe "tun" for the pronoun "ihr"?
This project may be useful to you! We can help you conjugate almost all of the german standard verbs.
To install and use this project, see this quick terminal video:
On Linux:
$ pip3 install console-conjugator
or Windows:
> pip install console-conjugator
Just give the argument "c" (for "command line") and conjugate away:
$ konjugier c machen er present
er macht
To use the fuzzy finder, simply give the argument "f" (fuzzy finder) and be on your way:
$ konjugier f
Note: Fuzzy Finder is only availible on OS X and Linux distributions
You can also use the conjugation module in python scripts:
>>> from Deutschconjugation import conjugator
>>> # Follows format verb-pronoun-tense
>>> conjugator.conjugate("spielen", "er", "present-perfect")
hat gespielt
The character-set a^, o^, u^, and s^ will be formatted automatically to ä, ö, ü, and ß (for german).
See our Conjugation app (coming to google play store) or our Java GUI application for different conjugating methods!