Metadata-Version: 1.0
Name: DidYouMean
Version: 1.0
Summary: Access Google's 'Did You Mean' feature from your script
Home-page: http://pypi.python.org/pypi/didYouMean/
Author: Virendra Rajput
Author-email: virendra.rajput567@gmail.com
License: LICENSE.txt
Description: ============
        Did You Mean
        ============
        
        Did You Mean provides you access to the Google's ``Did you Mean`` feature from your script.
        
        
            #!/usr/bin/env python
        
            import sys
        	from didYouMean import didYouMean
        
        	def main():
        		spell = "Poshgresql"
        		correctSpell = didYouMean.didYouMean(spell)
        		print correctSpell
        
        	if __name__ == "__main__":
        		main()
        
        
Platform: UNKNOWN
