For example "India" is detected as true but "india" is false
d = Hunspell()
d.spell('india')
Out[59]: False
d.spell('India')
Out[60]: True
How do i get hunspell to detect both as true
For example "India" is detected as true but "india" is false
d = Hunspell()
d.spell('india')
Out[59]: False
d.spell('India')
Out[60]: True
How do i get hunspell to detect both as true