├── .travis.yml ├── LICENSE ├── README.md ├── docs ├── Makefile └── source │ ├── conf.py │ ├── index.rst │ └── intro.rst ├── potara ├── __init__.py ├── data │ ├── README │ ├── english.pickle │ ├── stanford-en │ └── stanford-postagger.jar ├── document.py ├── resources │ └── stopwords.en.dat ├── similaritymeasures.py ├── summarizer.py └── takahe.py ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── test_all.py └── testdata ├── smalldoc.txt └── smalldocb.txt /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sildar/potara/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sildar/potara/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sildar/potara/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sildar/potara/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sildar/potara/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sildar/potara/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sildar/potara/HEAD/docs/source/intro.rst -------------------------------------------------------------------------------- /potara/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /potara/data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sildar/potara/HEAD/potara/data/README -------------------------------------------------------------------------------- /potara/data/english.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sildar/potara/HEAD/potara/data/english.pickle -------------------------------------------------------------------------------- /potara/data/stanford-en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sildar/potara/HEAD/potara/data/stanford-en -------------------------------------------------------------------------------- /potara/data/stanford-postagger.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sildar/potara/HEAD/potara/data/stanford-postagger.jar -------------------------------------------------------------------------------- /potara/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sildar/potara/HEAD/potara/document.py -------------------------------------------------------------------------------- /potara/resources/stopwords.en.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sildar/potara/HEAD/potara/resources/stopwords.en.dat -------------------------------------------------------------------------------- /potara/similaritymeasures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sildar/potara/HEAD/potara/similaritymeasures.py -------------------------------------------------------------------------------- /potara/summarizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sildar/potara/HEAD/potara/summarizer.py -------------------------------------------------------------------------------- /potara/takahe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sildar/potara/HEAD/potara/takahe.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sildar/potara/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sildar/potara/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sildar/potara/HEAD/tests/test_all.py -------------------------------------------------------------------------------- /tests/testdata/smalldoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sildar/potara/HEAD/tests/testdata/smalldoc.txt -------------------------------------------------------------------------------- /tests/testdata/smalldocb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sildar/potara/HEAD/tests/testdata/smalldocb.txt --------------------------------------------------------------------------------