Metadata-Version: 2.1
Name: wordpy
Version: 1.0.2
Summary: A dictionary program for nix* terminals
Home-page: https://github.com/mentix02/wordpy
Author: manan
Author-email: manan.yadav02@gmail.com
License: MIT
Keywords: wordpy dictionary api termdict
Platform: UNKNOWN
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX :: Linux
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
Requires-Dist: thesaurus (==0.2.3)
Requires-Dist: termcolor (==1.1.0)

# wordpy
A dictionary program for nix* terminals

## Installation

Simply use pip to install the latest stable version - 

```sh
$ pip install wordpy
```

## Usage

The program is extremly simple - you literally just get the definiton of a word in your terminal. Or the synonyms if you're feeling adventurous.

```sh
$ wordpy <word>
```

To get synonyms - 

```sh
$ wordpy -s <word>
```

### Examples

```sh
$ wordpy apple
[s] Apple (noun)
The round fruit of a tree of the rose family, which typically has thin green or red skin and crisp flesh.
```

```sh
$ wordpy -s car 
[s] Car (noun)
A road vehicle, typically with four wheels, powered by an internal combustion engine and able to carry a small number of people
[s] Synonyms
auto, automobile, bus, convertible, jeep, limousine, machine, motor, pickup, ride, station wagon, truck, van, wagon, bucket, buggy, compact, conveyance, coupe, hardtop, hatchback, heap, jalopy, junker, motorcar, roadster, sedan, subcompact, wheels, wreck, clunker, gas guzzler, touring car

```


