PyDictionary 1.3.4: Python Package Index
PyDictionary 1.3.4: Python Package Index
PyDictionary 1.3.4
Python Module to get meanings, translations, synonyms and antonyms of words Download
PyDictionary-1.3.4.zip
Latest Version: 1.5.2
Installation
For pip
For Easy_Install
easy_install -U PyDictionary
Usage
PyDictionary can be utilised in 2 ways, either by creating a dictionary instance which can take words as
arguments or by creating a dictionary instance with a fixed amount of words.
For example,
This is will create a local instance of the PyDictionary class and now it can be used to get meanings,
translations etc.
print (dictionary.meaning("indentation"))
This will return a dictionary containing the meanings of the word. For example the above code will
return:
{'Noun': ['a concave cut into a surface or edge (as in a coastline', 'the
formation of small pits in a surface as a consequence of corrosion', 'th
e space left between the margin and the start of an indented line', 'the
act of cutting into an edge with toothlike notches or angular incisions']
}
The dictionary keys are the different types of the word. If a word is both a verb and a noun then there
will be 2 keys:’Noun’ and ‘Verb’. Each key refers to a list containing the meanings
1 of 3 2018-01-31, 2:16 PM
PyDictionary 1.3.4 : Python Package Index https://pypi.python.org/pypi/PyDictionary/1.3.4
For Synonyms,
print (dictionary.synonym("Life"))
For Antonyms,
print (dictionary.antonym("Life"))
For Translations,
print (dictionary.translate("Range",'es'))
This will return the Translation of the word “Range” in Spanish. For Language codes consult Google
Translate. The return value is String in Python 3 and Unicode in Python 2
Alternatively, you can set a fixed number of words to the PyDictionary Instance. This is useful if you just
want to get the meanings of some words quickly without any development need.
Example:
dictionary=PyDictionary("hotel","ambush","nonchalant","perceptive")
'There can be any number of words in the Instance'
Similarly Synonyms and Antonyms can also be printed onto the screen.
Vocab
2 of 3 2018-01-31, 2:16 PM
PyDictionary 1.3.4 : Python Package Index https://pypi.python.org/pypi/PyDictionary/1.3.4
3 of 3 2018-01-31, 2:16 PM