Metadata-Version: 2.1
Name: django-textrank
Version: 0.4
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
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Framework :: Django :: 3.0
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: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Dist: django (>=2.2)
Requires-Dist: djangokit (>=0.1)
Requires-Dist: pymorphy2 (>=0.8)

================
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


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.


