Created
April 8, 2019 13:54
-
-
Save bhavul/d3dc2a6cd6bd2cfc85b66bcbc3a83380 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from wordnik import * | |
wordToFind = "eloquent" | |
WORDNIK_APIKEY = "df571d345a98541fd4089056ad12ada5715d7998e77ee5111" | |
wordnikApiUrl = 'http://api.wordnik.com/v4' | |
client = swagger.ApiClient(wordnikApiKey, wordnikApiUrl) | |
wordConnection = WordApi.WordApi(client) | |
definition = wordConnection.getDefinitions(word=wordToFind,sourceDictionaries='wiktionary') | |
print 'Definition : '+definition.text |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment