Metadata-Version: 2.1
Name: trie-cli-global
Version: 0.2.0
Summary: A CLI that allows a user to update or see a data structure that is hosted globally. 
Home-page: UNKNOWN
Author: c25kenneth
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Requires-Python: >=3.9.6
Description-Content-Type: text/markdown
Requires-Dist: click
Requires-Dist: requests

# trie-cli-global

A CLI that allows a user to update or see a data structure that is hosted globally.

## Installation

Use [pip](https://pip.pypa.io/en/stable/) to install trie-global.

```bash
pip install trie-cli-global
```

## Usage

# To List Trie:
```
trie-cli-global list
```

# To add word to Trie:
```
trie-cli-global add YOUR_WORD
```

# To remove word from Trie:
```
trie-cli-global remove YOUR_WORD
```

# To check if word is from Trie:
```
trie-cli-global check YOUR_WORD
```

# To get recommendations from a prefix:

```
trie-cli-global recommend YOUR_PREFIX
```

## License
[MIT](https://choosealicense.com/licenses/mit/)

