Metadata-Version: 2.1
Name: vocably
Version: 0.0.7
Summary: Vocably is a Natural Language Framework written in Python for Language based Tasks.
Home-page: https://github.com/Nandhini25S/Vocably
Author: Nandhini, Sarika
Author-email: nandhinisiva2561@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7,<4
Description-Content-Type: text/markdown
License-File: LICENSE

<div>
<a href="https://colab.research.google.com/drive/1q56gWXSik2XCT2pqjSD8kv3fLvfvoI1n?usp=sharing"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"></a>
 <a href = 'https://pypi.org/project/vocably/'><img src="https://img.shields.io/badge/ruth-PyPi-blue?style=flat&logo=python" alt="ruth" /> </a>
</div>

# Vocably
Vocably is a Natural Language Processing (NLP) Framework written with the purpose to increase the flow of our development in daily basis.
## Quick Installation

```bash
$ pip install vocably
```
## Installation from source 
```bash
$ git clone https://github.com/Nandhini25S/Vocably.git
$ cd Vocably
$ conda env create -f environment.yml
$ export PYTHONPATH=./src
$ python3 setup.py install
```

## Using Makefile (for Linux or Mac Users)
```bash
$ git clone https://github.com/Nandhini25S/Vocably.git
$ cd Vocably
$ conda env create -f environment.yml
```
now we will activate this environment
```bash
$ conda activate vocably
```
to install and config

```bash
$ export PYTHONPATH=./src
$ make install
$ make configure
```
or 
```bash
$ make all
```
## Using batch file (for Windows users)

```bash
$ git clone https://github.com/Nandhini25S/Vocably.git
$ cd Vocably
$ conda env create -f environment.yml
```
now we will activate this environment
```bash
$ conda activate vocably
```
to install and config

```bash
$ Scripts/install.bat
$ Scripts/config.bat
```
