Metadata-Version: 1.1
Name: textteaser
Version: 0.3
Summary: A package for summarizing text using the TextTeaser API
Home-page: https://bitbucket.org/jgoettsch/py-textteaser/
Author: Jeffrey Goettsch
Author-email: jgoettsch+pytextteaser@gmail.com
License: UNKNOWN
Download-URL: https://bitbucket.org/jgoettsch/py-textteaser/get/0.3.tar.gz
Description: textteaser is a package for summarizing text using the TextTeaser API.
        
        See:
        
        * https://www.mashape.com/mojojolo/textteaser
        
        for more information and to get an API key.
        
        Documentation is available on Read the Docs:
        
        * https://py-textteaser.readthedocs.org/
        
        Installation
        ============
        
        If you have already downloaded textteaser, run the following
        command inside this directory::
        
            $ python setup.py install
        
        If you have not yet downloaded textteaser, it would be easier to use
        pip::
        
            $ pip install textteaser
        
        or easy_install::
        
            $ easy_install textteaser
        
        Either method will install textteaser into your current environment.
        
        Changelog
        =========
        
        For a full history of changes see the commit history:
        
        * https://bitbucket.org/jgoettsch/py-textteaser/commits/all
        
        version 0.3
        
        * Added minimal logging support.
        
        version 0.2
        
        * Able to summarize text at a given URL.
        
        version 0.1.1
        
        * Removed caching ability to match API changes.
        
        version 0.1
        
        * Able to summarize text with the TextTeaser API.
        
        * Able to retrieve passed summaries quickly through cached ID values.
        
        Development
        ===========
        
        Development for textteaser takes place on bitbucket:
        
        * https://bitbucket.org/jgoettsch/py-textteaser/
        
        A mirror is available on GitHub if you prefer:
        
        * https://github.com/jgoettsch/py-textteaser
        
        To get started you can do the following::
        
            $ hg clone https://bitbucket.org/jgoettsch/py-textteaser/
            $ cd py-textteaser
            $ pip install -r requirements_dev.txt
            $ python setup.py develop
        
        If you discover a bug, please create an issue ticket:
        
        * https://bitbucket.org/jgoettsch/py-textteaser/issues/new
        
        To run the test suite, you will have to create a module at::
        
            textteaser/tests/apikey.py
        
        with a global variable, APIKEY, which is a string containing your API key.
        Then you can run the test suite with nosetests::
        
            $ nosetests --with-coverage --cover-package=textteaser textteaser/tests/tests.py
        
        or through setup.py::
        
            $ python setup.py test
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: General
