Dictionary Project was developed with Django, this application provides word meanings across different parts of speech along with pronunciations.
With this dictionary project, you'll gain practical knowledge on how to utilize APIs to retrieve word meanings across different parts of speech along with pronunciations, enhancing your understanding of API integration in real-world applications.
git clone https://github.com/shivatejaburle/dictionary
cd dictionarypip install virtualenv
virtualenv venv
# For Windows
venv\Scripts\activate
# For Mac
source venv/bin/activate pip install -r requirements.txtGet your API Key from Wordnik: https://developer.wordnik.com/
Create dictionary/.env to store API Keys.
WORDNIK_API_KEY = '<YOUR_API_KEY>'python manage.py collectstaticJust run this command:
python manage.py runserverYour application will be available @ http://127.0.0.1:8000/



