This module is currently experimental.
The API could change at any time.
Install with pip:
pip install summarise
Install from github:
git clone https://www.github.com/bonzanini/summarise cd summarise python setup.py install
Code sample:
from summarise import Summariser full_text = [['One', 'tokenized', 'sentence], ['Another', 'sentence'], ['The', 'quick', 'brown', 'fox', 'jumped']] summariser = Summariser(full_text) summary = summariser.summarise(size=2)
MIT License, see LICENSE