Skip to main content

Use the Dandelion API with Django

Project description

Version Build Codecov Requirements Status

Use the Dandelion API with Django

Documentation

The full documentation is at https://django-dandelion.readthedocs.io.

Quickstart

Install Django Dandelion:

$ pip install django-dandelion

Add django_dandelion to your INSTALLED_APPS

INSTALLED_APPS = [
    # ...
    'django_dandelion',
]

Add the entry DANDELION_TOKEN. The recommended method is to setup your production keys using environment variables. This helps to keep them more secure. Your test keys can be displayed in your code directly.

The following entry look for your DANDELION_TOKEN in your environment and, if it can’t find them,uses your test keys values instead:

DANDELION_TOKEN = os.environ.get("DANDELION_TOKEN", "<your dandelion token>")

Register on dandelion to obtain your authentication keys and enrich your application with our semantic intelligence.

You can also change the url of the host and decide whether to use the cache:

DANDELION_HOST = 'api.dandelion.eu'  # Default 'api.dandelion.eu'
DANDELION_USE_CACHE = True  # Default True

Running Tests

Does the code actually work?

# Add "export DANDELION_TOKEN=<your dandelion token>" to <YOURVIRTUALENV>/bin/activate
$ source <YOURVIRTUALENV>/bin/activate
$ (myenv) $ pip install tox
$ (myenv) $ tox

Change Log

All notable changes to this project will be documented in this file.

The format is based on KeepAChangelog and this project adheres to SemanticVersioning.

[0.1.3] - 2017-03-14

Fixed

  • Merge extra_dict with params in BaseDandelionParamsRequest._do_request

  • Fixed app name in documentation to add to INSTALLED_APPS

[0.1.2] - 2017-03-10

Added

  • User-defined spots (EntityExtraction.UserDefinedSpots())

[0.1.1] - 2017-03-10

Fixed

  • PyPI version release

[0.1.0] - 2017-03-10

  • First release on PyPI.

Project details


Download files

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

Source Distribution

django-dandelion-0.1.3.tar.gz (13.5 kB view hashes)

Uploaded Source

Built Distribution

django_dandelion-0.1.3-py2.py3-none-any.whl (15.0 kB view hashes)

Uploaded Python 2 Python 3

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