https://github.com/aditeyabaral/pydictionary
PyDictionary is an offline English dictionary made using Python along with the Wordnet Lexical Database and Enchant Spell Dictionary. The application returns any query with a list of results - the various word forms and their meanings along with a sample sentence using the given word.
https://github.com/aditeyabaral/pydictionary
dictionary python wordnet wordnet-lexical-database wordnet-library
Last synced: 6 months ago
JSON representation
PyDictionary is an offline English dictionary made using Python along with the Wordnet Lexical Database and Enchant Spell Dictionary. The application returns any query with a list of results - the various word forms and their meanings along with a sample sentence using the given word.
- Host: GitHub
- URL: https://github.com/aditeyabaral/pydictionary
- Owner: aditeyabaral
- Created: 2019-12-11T12:05:11.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-16T06:01:29.000Z (over 4 years ago)
- Last Synced: 2025-03-29T03:32:15.951Z (7 months ago)
- Topics: dictionary, python, wordnet, wordnet-lexical-database, wordnet-library
- Language: Python
- Homepage: https://python-dictionary.herokuapp.com/
- Size: 231 KB
- Stars: 17
- Watchers: 2
- Forks: 10
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PyDictionary
PyDictionary is an offline English dictionary made using Python along with the Wordnet Lexical Database and Enchant Spell Dictionary. The project is a very simple one made to understand the complete functionality of Wordnet and to test the extent of its resources. The application returns any query with a list of results - the various word forms and their meanings along with a sample sentence using the given word.
PyDictionary is a complete project, and can be used as a full fledged offline English dictionary. Although limited, it does the same job Google search does when searched with a word.
[Click here to visit PyDictionary!](https://python-dictionary.herokuapp.com/)

# Setting Up Environment
1. Create and activate virtual environment
```bash
python -m venv env
source env/bin/activate
```2. Install dependencies
```bash
pip3 install -r requirements.txt
```# How to run PyDictionary
## Runing on Command Line
Run the application by passing the search word as an argument.
```bash
python3 pyDictionary.py hello
```
## Running Flask App
```bash
cd src/
flask run
```
