Skip to content

CLI tool to generate a summary of news/articles right on your terminal. Also a pip package.

License

Notifications You must be signed in to change notification settings

ayushsubedi/choto

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Term Article Summary

Installation

pip install choto

asciicast

Installation (from source)

Clone the repository

git clone https://github.com/ayushsubedi/choto

CD into the cloned directory and create a virtualenv

python -m venv env

Enable virtualenv

.\env\Scripts\activate

Install dependency packages from requirements.txt

pip install -r requirements.txt

Run the app

python choto.py --url=https://abc.xyz --ratio=0.5 --algorithm=bert

Usage: choto.py [OPTIONS]

Options:
--url TEXT                      Enter a valid URL
--ratio FLOAT                   Ratio to summarize to.
--algorithm [gensim|spacy|bert] Algorithm to use
--help                          Show this message and exit.