Metadata-Version: 1.1
Name: readless
Version: 1.0.16
Summary: Module for conversational and text summarization and much more
Home-page: https://github.com/AdiChat/Read-Less
Author: Aditya Chatterjee
Author-email: aditianhacker@gmail.com
License: MIT License
Description: ReadLess 
        ==========
        
        A python module for conversation and text summarization and much more
        exciting features.
        
        *Features* provided by this module:
        
        -  **Text Segmentation** using:
        
           -  **TextTiling** with **Block Score**
           -  **TextTiling** with **Vocabulary introduction**
        -  **Conversational summarization** using:
        
           -  **Cluster Rank**
        -  **Text summarization** using :
        
           -  **TextRank**
           -  **Random**
        
        Installation
        ------------
        
        Make sure you have `Python`_ 2.7/3.3+ and `pip`_\ (`Windows`_, `Linux`_)
        installed. Run simply (preferred way):
        
        .. code:: sh
        
            $ [sudo] pip install readless
        
        Or for the latest version in development:
        
        .. code:: sh
        
            $ [sudo] pip install git+git://github.com/adichat/read-less.git
        
        ReadLess API
        ------------
        
        You can use readless like a library in your project.
        
        For quickly summarizing a conversation using ClusterRank algorithm:
        
        .. code:: python
        
            # -*- coding: utf8 -*-
        
            from readless.Summarization import clusterrank
            summarizer = clusterrank.ClusterRank()
            pathToFile = "C:/conversation.in"
            summary = summarizer.summarizeFile(pathToFile)
        
        For segmenting a text using TextTiling algorithm:
        
        .. code:: python
        
            # -*- coding: utf8 -*-
        
            from readless.Segmentation import texttiling
            segmentation = texttiling.TextTiling()
            pathToFile = "C:/conversation.in"
            segmentedText = segmentation.segmentFile(pathToFile)
        
        For a detailed list of other API functionalities, see `**ReadLess
        Documentation**`_.
        
        Contributions
        -------------
        
        All contributions are welcomed. This module is in development and there
        are several scopes of improvement. Tests are to be implemented along
        with other Summarization algorithms with support for web page
        summarization. For upcoming features, see `Future developments`_.
        
        `LICENSE`_
        ~~~~~~~~~~~~
        
        .. _Python: http://www.python.org/
        .. _pip: https://crate.io/packages/pip/
        .. _Windows: http://docs.python-guide.org/en/latest/starting/install/win/
        .. _Linux: http://docs.python-guide.org/en/latest/starting/install/linux/
        .. _**ReadLess Documentation**: 
        .. _Future developments: 
        .. _LICENSE: https://github.com/AdiChat/Read-Less/blob/master/LICENSE
Keywords: cluster rank,text rank,texttiling,data mining,conversation summarization,text summarization,text segmentation,data reduction,NLP,computational linguistics,natural language processing
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Other Audience
Classifier: Intended Audience :: End Users/Desktop
Classifier: Natural Language :: English
Classifier: Topic :: Education
Classifier: Topic :: Internet
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Text Processing :: Linguistic
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
