File: install.txt

package info (click to toggle)
django-filter 25.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,228 kB
  • sloc: python: 7,970; javascript: 7,213; makefile: 157; sh: 16
file content (29 lines) | stat: -rw-r--r-- 622 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
============
Installation
============

Django-filter can be installed from PyPI with tools like ``pip``:

.. code-block:: bash

    $ pip install django-filter

Then add ``'django_filters'`` to your ``INSTALLED_APPS``.

.. code-block:: python

    INSTALLED_APPS = [
        ...
        'django_filters',
    ]


Requirements
------------

Django-filter requires a current version of `Django`__ and is tested against
all supported versions of Python, as well as the latest version of Django REST
Framework (`DRF`__).

__ https://www.djangoproject.com/download/#supported-versions
__ http://www.django-rest-framework.org/