gender-detector icon indicating copy to clipboard operation
gender-detector copied to clipboard

Library for guessing a person's gender by their first name.

Results 4 gender-detector issues
Sort by recently updated
recently updated
newest added

Delete arprocessed.csv Delete uyprocessed.csv Add utf-8 encoded arprocessed.csv and uyprocessed.csv

On Python 3, the main class doesn't import properly. ``` Python 3.5.2 (default, Nov 17 2016, 17:05:23) [GCC 5.4.0 20160609] on linux Type "help", "copyright", "credits" or "license" for more...

``` 18 if len(self.indices) == 0: 19 self._generate_index() ``` ---> 20 return self.indices[letter.upper()] 21 22 def _generate_index(self): KeyError: '9'

- Altered code to enable loading of name info into an in-memory dictionary to speed up name info retrieval (needed if using it with an apply function in Pandas on...