0

Help
Guys I am building a python english dictionary application. I am using the PyDictionary module for retrieving a word's meaning when internet connection is available. Any idea on how to implement the offline dictionary support too(how to get a word's meaning when internet connection is not available)?

Comments
  • 0
    Without storing a dictionary on the device, I'm not sure you're going to be able to do this. It's not like you can programmatically find a definition, and caching results is going to be almost completely useless if you ask me.

    Of course if anyone else can think of a way you could actually do it then please do call me out on it...
  • 1
    Look up nepdict on github, our fellow brother from FOSS Nepal community has coded an offline English to Nepali dictionary. You'll get some idea from his project.
  • 0
    Yeah of course I am going to store the dictionary on the device. But I dont where to begin. From where to download the complete dictionary? Which format to use for storage (JSON???) Etc etc
Add Comment