Metadata-Version: 2.1
Name: gender-determinator
Version: 0.1
Summary: Determines the gender of german nouns and provides some convenient methods
Home-page: https://github.com/Alpha200/gender-determinator
Author: Daniel Sendzik
Author-email: daniel@sendzik.eu
License: LGPL
Description: # Gender Determinator
        
        Determines the gender of german nouns and provides some convenient methods.
        
        ## Usage
        
        ```python
        from genderdeterminator import GenderDeterminator
        
        gd = GenderDeterminator()
        
        print(gd.get_gender("Garten"))           # prints "m"
        print(gd.get_definite_article("Garten")) # prints "der" 
        ```
        
        Gender determinator uses the eng-deu dictionary by [FreeDict](https://freedict.org/) to determine the genders.
Platform: UNKNOWN
Description-Content-Type: text/markdown
