Oxford Dictionary API Python Wrapper
This is a python wrapper for the Oxford Dictionary API.
The Oxford API offers a free plan with up to 3,000 requests per month with ull access to Oxford Dictionaries data, although you will need to register for an API key. Sign up here.
Installation
git clone git@github.com:RafaelBroseghini/OxfordAPI.git
cd OxfordAPI
python OxfordDictionaries.py
Usage
The code below shows how to quickly get 10 synonyms for a chosen word.
from oxforddictionaries.words import OxfordDictionaries
o = OxfordDictionaries.Oxford(app_id, app_key)
relax = o.get_synonyms("absorb").json()
synonyms = relax['results'][0]['lexicalEntries'][0]['entries'][0]['senses'][0]['synonyms']
for s in range(10):
print(synonyms[s]['text'])
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :+1: