https://github.com/shivatejaburle/dictionary
Dictionary Project was developed with Django, this application provides word meanings across different parts of speech along with pronunciations.
https://github.com/shivatejaburle/dictionary
dictionary dictionary-api dictionary-application dictionary-python dictionary-software dictionary-tools django django-application django-project simple-django-app simple-django-project simple-project
Last synced: about 1 month ago
JSON representation
Dictionary Project was developed with Django, this application provides word meanings across different parts of speech along with pronunciations.
- Host: GitHub
- URL: https://github.com/shivatejaburle/dictionary
- Owner: shivatejaburle
- License: mit
- Created: 2024-08-12T08:07:19.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-04-26T06:48:52.000Z (2 months ago)
- Last Synced: 2025-04-26T07:30:29.882Z (2 months ago)
- Topics: dictionary, dictionary-api, dictionary-application, dictionary-python, dictionary-software, dictionary-tools, django, django-application, django-project, simple-django-app, simple-django-project, simple-project
- Language: Python
- Homepage: https://dictionary-app-stb.vercel.app/
- Size: 822 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dictionary
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.
## Installing
### Clone the project```bash
git clone https://github.com/shivatejaburle/dictionary
cd dictionary
```### Setup your Virtual Environment
```bash
pip install virtualenv
virtualenv venv
# For Windows
venv\Scripts\activate
# For Mac
source venv/bin/activate
```### Install dependencies
```bash
pip install -r requirements.txt
```### Environment Settings
Get your API Key from Wordnik: https://developer.wordnik.com/
Create `dictionary/.env` to store API Keys.
```bash
WORDNIK_API_KEY = ''
```### Collect static files (only on a Production Server)
```bash
python manage.py collectstatic
```### Running a Development Server
Just run this command:
```bash
python manage.py runserver
```
Your application will be available @ http://127.0.0.1:8000/## Screenshots


 