Skip to content

bonzanini/summarise

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

summarise - Python Text Summarisation module

This module is currently experimental.

The API could change at any time.

Installation

Install with pip:

pip install summarise

Install from github:

git clone https://www.github.com/bonzanini/summarise
cd summarise
python setup.py install

Examples

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)

License

MIT License, see LICENSE

About

Python module for Text Summarisation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages