Metadata-Version: 2.1
Name: japyconjugator
Version: 1.0.2
Summary: A python package for conjugating verbs in the Japanese language.
Author: Simone Bondi
Project-URL: Repository, https://github.com/Shibodd/japyconjugator
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Text Processing :: Linguistic
Requires-Python: >=3
Description-Content-Type: text/markdown
License-File: LICENSE

# japyconjugator
A python package for conjugating verbs and adjectives in the Japanese language

Usage:
```python3
import japyconjugator.verbs as verbs
verbs.conjugate('飲む', verbs.VerbClass.Godan, verbs.VerbForm.PlainPast, verbs.Polarity.Negative) # returns '飲まなかった'

import japyconjugator.adjectives as adj
adj.conjugate('元気', adj.AdjectiveClass.Na, adj.AdjectiveForm.PolitePast, adj.Polarity.Negative) # returns '元気じゃなかったです'
adj.conjugate('暑い', adj.AdjectiveClass.I, adj.AdjectiveForm.Connective, adj.Polarity.Affirmative) # returns '暑くて'
```
