Metadata-Version: 2.1
Name: voseador
Version: 0.0.1
Summary: A tiny package to add 'voseo' to the verbecc spanish conjugator.
Project-URL: Github, https://github.com/CoolRobotsAndStuff/voseador
Author-email: Alejandro Mohnblatt <aledeum.saf@gmail.com>
License: MIT License
        
        Copyright (c) 2023 Alejandro de Ugarriza Mohnblatt
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: argentina,argentinizador,castellano,chile,conjugación,conjugador,conjugation,conjugator,español,paraguay,spanish,uruguay,vos,voseador,voseo
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: Spanish
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Text Processing
Classifier: Topic :: Text Processing :: Linguistic
Requires-Python: >=3.7
Requires-Dist: unidecode>=1.3.6
Requires-Dist: verbecc>=1.7.1
Description-Content-Type: text/markdown


# Voseador

A tiny python package to conjugate spanish verbs with voseo (using vos instead of tu).

This package works by derivating the "vos" conjugation from the "vosostros" one when necesary. For example: "vosotros cantáis" -> "vos cantás". It also has an exception table for irregular verbs.

Seamless integration with the verbecc spanish conjugator.

## Dependencies

Python 3.7

Unidecode==1.3.6

## Examples

### Using verbecc

Additional dependencies:
verbecc==1.7.1

``` python
from verbecc import Conjugator
from voseador import Voseador

conjugator = Conjugator(lang='es')
voseador = Voseador()

conjugation = conjugator.conjugate("haber")

conjugation = voseador.add_vos_to_verbecc_conjugation(conjugation)

print(conjugation["moods"])
```

### On its own

``` python
from voseador import Voseador

voseador = Voseador()

vos_verb = voseador.vos_from_vosotros(mood="indicativo", tense="presente", infinitivo="comer", vosotros_verb="coméis")

print(vos_verb)
```

Take into account that this last example only works with tenses in wich the "vos" conjugation differs from de "tu" one. In the rest of the cases you can just copy the "tu" conjugation.
