Metadata-Version: 2.1
Name: console-conjugator
Version: 0.0.7
Summary: Deutsch command line conjugator
Home-page: https://github.com/sandkoan/console-conjugator
Author: Shynn Lawrence & Govind Gnanakumar
Author-email: shynn.lawrence@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.4
Description-Content-Type: text/markdown

# Console Conjugator

Hallo und guten Tag!

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 this project, python is required.

On Linux:
```bash
pip3 install console-conjugator
```
or Windows:
```cmd
pip install console-conjugator
```
After installation, you can use the cli interface as such:
```bash
konjugier machen er present
```
```cmd
konjugier tun er present-perfect
```
And that's all there is to it!
As of now, the following tenses are supported:
1. present
2. present-perfect
3. imperative
4. partizip1


To test out your new install in a python file/REPL, import the following:
```python
from Deutschconjugation import conjugator
```
Then you can use it simply as such:
```python
conjugator.format("heis*en")
[0] heißen
```
This formats a\*, o\*, u\*, and s\* as ä, ö, ü, ß. Might be useful for those lacking a german keyboard layout.
To conjugate verbs, you can simply use the conjugate interface:
```python
# Follows format verb-pronoun-tense
conjugator.conjugate("spielen", "er", "present-perfect")
[0] hat gespielt
```

If the method is not given the tense argument, it is assumed to be present.

Thank you for checking out our project, and have a good day!
-Shynn Lawrence, Govind Gnanakumar


