Skip to main content

Create a queryable data source from an existing database.

Project description

Django Rest Framework Discovery

Build Status PyPI version

Discovery allows you to create an API from an existing database with little to no effort. This project is based on Shabda Raaj's Bookrest. You can then leverage the capabilties of the Django Rest Framework to apply filtering, pagination and documentation generation. A project demonstration is available.

Requirements

For successful generation, you need to have a primary key present in the table. Otherwise, it will be silently ignored.

Installation

pip install djangorestframework-discovery

In your settings.py:

INSTALLED_APPS = [
    # ...
    "rest_framework",
    "rest_framework_discovery",
]

Add a variable to your settings.py named DISCOVERY_ALIAS_NAME. You can use any value, but discovery is recommended. You will use that to define the database you would like to use for viewset generation.

DISCOVERY_ALIAS_NAME = 'discovery'
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
    },
    'discovery': {
        'NAME': 'YOUR_DB_NAME',
        'ENGINE': 'django.db.backends.postgresql',
        'USER': 'YOUR_DB_USER',
        'PASSWORD': 'YOUR_DB_PASSWORD',
        'HOST': 'YOUR_DB_HOST',
        'PORT': 'YOUR_DB_PORT',
    },
}

Add the generated patterns to the rest of your application by modifying the urls.py.

urlpatterns = [
    # ...
    url(r'^api/discovery/', include('rest_framework_discovery.urls')),
]

Testing

You can run through the testing suite by running runtests.py or tox.

Configuration

You can configure the following in settings.py:

  • DISCOVERY_ALIAS_NAME: (required) The database alias name to use with discovery.
  • DISCOVERY_READ_ONLY: (optional) True or False, whether or not the viewsets should be read-only.
  • DISCOVERY_INCLUDE: (optional) A list of tables that you would like to only include.
  • DISCOVERY_EXCLUDE: (optional) A list of tables that you would like to ignore.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page