Metadata-Version: 2.1
Name: simple-dictionary
Version: 0.1.0
Summary: Read the definition of a word
Home-page: https://github.com/AlexiaArtemis/simpledictionary
Author: Alexia Artemis Baikas
Author-email: alexiabaikas4@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE

# Simple Dictionary

---

This Simple Dictionary is a dictionary in which the user can search for the definition of a word.

It uses a data file that contais a vocabluary. This data file is from the Udemy course ["The Python Mega Course"](https://www.udemy.com/course/the-python-mega-course/) created by ["Ardit Sulce"](https://www.udemy.com/user/adiune/).

## Installation

---

You can install the Simple Dictionary from [PyPI](https://test.pypi.org/project/simple-dictionary/)

```
    pip install simple-dictionary
```

The dictionary is supported on Python 2.7, as well as Python 3.5 and above.

## How to use

---

The Simple Dictionary is a command line application, named `dictionary`. To see the definition of a word, for example _acid rain_, simple call the program:

```
    $ dictionary acid rain
    acid rain  means:
    Rain having a pH less than 5.6.
```

If there is a typo in the name, the program will find a similar word and ask you if you want to use this similar word. For yes press `y` and for no press `n`.

```
    $ dictionary acid rainn
    Did you mean acid rain ? y
    acid rain  means:
    Rain having a pH less than 5.6.
```


