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 dictionary
pip install virtualenv
virtualenv venv
# For Windows
venv\Scripts\activate
# For Mac
source venv/bin/activate
pip install -r requirements.txt
Get 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 collectstatic
Just run this command:
python manage.py runserver
Your application will be available @ http://127.0.0.1:8000/