An alternative for Sanskrit Dictionary Updater
StarDict is a cross-platform and international dictionary software. Using StartDict or other apps that work with the StarDict dictionary format, one could use this for a dictionary of various languages.
Vishvas Vasuki and others have compiled a nice set of dictionaries for Indic Languages. Thus, one could use a StarDict compatible app like EBDic, GoldenDict, or ColorDict which can be used for these dictionaries. The process would be to install GoldenDict and then install and run Sanskrit Dictionary Updater (again written by Vishvas) and then rescan dictionaries from within GoldenDict App.
However, I have had problems running Sanskrit Dictionary Updater on my phone recently. Hence, I just wrote this as an alternative way to download these dictionaries to your Desktop computer or to Android for myself. Note you may not need this and Sanskrit Dictionary Updater might just work for you very well. But, I needed this for myself so wrote this.
Update (2020/10/22): Due to issues with running Sanskrit Dictionary Updater on a Moto G Stylus, this was forked from the original to python3 and used as a backup. It is not in the greatest of shape, and needs some work to be a good general tool - @kmadathil
This version of the software was tested on Ubuntu Linux with Python 3.7. It should run on any Linux system or MacOS with Python3. It may not run on Windows, but should run with minor edits.
The default setting downloads Sanskrit, Pali, Hindi and Malayalam dictionaries. There are others available (Kannada, Telugu, Tamil, etc.) which can be downloaded by modifying the file directly.
Edit downloader.py and add the index files you want from Indic Dicts. Comment out the index files that you don't want by putting a "#" on that line.
python
listOfIndexes = [
"stardict-sanskrit/gh-pages/sa-head/sa-entries/tars/tars.MD",
"stardict-sanskrit/gh-pages/sa-head/en-entries/tars/tars.MD",
"stardict-sanskrit/gh-pages/en-head/tars/tars.MD",
"stardict-sanskrit-vyAkaraNa/gh-pages/tars/tars.MD",
"stardict-sanskrit-kAvya/gh-pages/tars/tars.MD",
"stardict-hindi/gh-pages/hi-head/hi-entries/tars/tars.MD",
"stardict-hindi/gh-pages/hi-head/en-entries/tars/tars.MD",
# Bad?
# "stardict-hindi/gh-pages/en-head/tars/tars.MD",
"stardict-malayalam/gh-pages/ml-head/tars/tars.MD",
"stardict-malayalam/gh-pages/en-head/tars/tars.MD",
"stardict-pali/gh-pages/pali-en-head/tars/tars.MD",
"stardict-pali/gh-pages/pali-head/en-entries/tars/tars.MD",
"stardict-pali/gh-pages/en-head/tars/tars.MD",
]
- You already will have a Python installed on Mac. Type
python3
on command line to check that. Typequit()
to exit from Python. - Clone this repository using git or just download the file downloader.py. Please remember to read the section "Controlling the Dict Files Downloaded" above.
- Type the following command in a new directory.
python3 downloader.py
- The .tar.gz dictionary files will get downloaded to
./sdcard/Download/dicttars
and their expansions will be put in./sdcard/Download/
.
You should have downloaded the files using the steps in previous section.
- Install GoldenDict or ColorDict some other StarDict compatible dictionary App.
- Transfer the .tar.gz files to from
./sdcard/Download/dicttars
(on Mac) to/sdcard/Download/dicttars
on Android and all files (and subdirectories) from./sdcard/Download
to/sdcard/Download
on Android. The easiest way to do this is to mount your phone through USB in file transfer mode. - Now run EBDic, GoldenDict or ColorDict and Rescan dictionaries. You should be all set now!
You should have downloaded the dictionaries as decribed in the Mac section above. This should work (I haven't tested personally. Though a friend has used Dictionary Universal and downloaded .tar.gz files directly):
- You should install a StarDict compatible app like Dictionary Universal on your iPhone.
- Download dictionaries on a Mac as given in above steps.
- Copy the .tar.gz files to your iPhone using the process described here via USB or WiFi.
If you want to run directly on Android, use the following steps:
- Install QPython.
- On a computer, click on downloader.py in a browser.
- Transfer this program to
/sdcard/com.hipipal.qpyplus/scripts
on Android. [You can use pushtoandroid.sh]. - Now run QPython and run the program. Be patient! It might take a while to download. It would be prudent to do this while you are connected to WiFi or have a fast internet connection. This will download and install the dictionaries on your Android phone.
- Now run GoldenDict or ColorDict and Rescan dictionaries. You are all set now!
I have not tested this on Windows or other platforms. But, the program should work with minor changes as long as Python 3.x is available. You might want to change the paths where .tar.gz files and their expansions are stored.