Metadata-Version: 1.1
Name: django-textrank
Version: 1.0
Summary: This is a Django reusable application for ranging a text by keywords.
Home-page: https://gitlab.com/djbaldey/django-textrank/
Author: Grigoriy Kramarenko
Author-email: root@rosix.ru
License: BSD License
Description: ================
        django-textrank
        ================
        
        It is simple web-service for ranging a text by keywords.
        
        Installation
        ------------
        
        .. code-block:: shell
        
            pip3 install django-textrank
            # or
            pip3 install git+https://gitlab.com/djbaldey/django-textrank.git@master#egg=django-textrank
        
        
        Support Databases
        -----------------
        
        1. SQLite
        2. PostgreSQL
        
        You can use MySQL or MariaDB if you are willing to accept that there will be no protection against
        duplicate records in the database and you will need to manage this yourself.
        
        
        Quick start
        -----------
        
        1. Add "textrank" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'djangokit',
                'textrank',
            ]
        
        2. Include the polls URLconf in your project urls.py like this::
        
            path('textrank/', include('textrank.urls')),
        
        3. Run `python3 manage.py migrate` to create the necessary models.
        
        4. Start the development server and visit http://127.0.0.1:8000/textrank/
           to check your text.
        
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Framework :: Django :: 3.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: Russian
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
