This is a demo of spellcheck service of silpa. In this page, you can enter a word for checking the spelling and just get the result.
For using Silpa spellcheck service in your web or desktop applications, read the API documentation. This page itself is an example for using silpa spellcheck APIs in a webpage.
# -*- coding: utf-8 -*- >>>from jsonrpc import ServiceProxy >>>silpaService = ServiceProxy("http://smc.org.in/silpa/JSONRPC") >>>print silpaService.spellchecker.check("speling") False >>>print silpaService.spellchecker.check("speling","en_US") False >>>print silpaService.spellchecker.suggest("speling") ["spelling","spieling","spewing"]