Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 930 Bytes

README.md

File metadata and controls

44 lines (33 loc) · 930 Bytes

tenseflow

tenseflow automatically changes the tense of any English text.

Features

  • change to 'past', 'present', or 'future' tense
  • includes web app

Installation

Unfortunately, the package is only compatible with python 2.7 and 3.6.

Install this package

git clone https://github.com/bendichter/tenseflow.git
cd tenseflow
pip install .

download default English SpaCy model

sudo python -m spacy download en

Usage

Basic usage

from tenseflow import change_tense

change_tense('I will go to the store.', 'past')
u'I went to the store.'

Run web app

export FLASK_APP=app.py
flask run

Testing

Build Status

To test, install pytest with pip install pytest, then run pytest from within the tenseflow directory.