Skip to main content

Matplotlib field for Django

Project description

https://travis-ci.com/scidam/django_matplotlib.svg?branch=master

Django_matplotlib is a reusable Django app for embedding matplotlib figures into Django driven websites. It can be easily integrated with Django admin app and used in templates via forms.

Documentation: http://django-matplotlib.readthedocs.org/

Requirements

Django 1.11+, <3.0; Python 3.5+, <3.8.

Quick start

  1. Clone git repository to place where Django can find it:

pip install django-matplotlib
  1. Add “django_matplotlib” to your INSTALLED_APPS setting like this:

INSTALLED_APPS = [
    ...
    'django_matplotlib',
    ...
]
  1. Use MatplotlibField in your models.py, e.g.:

from django.db import models
from django_matplotlib.fields import MatplotlibFigureField

class MyModelWithFigure(models.Model):
    # ... other fields
    # figures.py should be in the same directory where models.py is placed.
    # see  ./django_matplotlib/figures.py for example.
    fig = MatplotlibFigureField(figure='test_figure', verbose_name='figure',
                                silent=True)
    # ... other fields
  1. Generate and apply migrations.

Author

Dmitry E. Kislov

E-mail: kislov@easydan.com

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

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

Source Distribution

django-matplotlib-0.1.tar.gz (10.7 kB view hashes)

Uploaded Source

Built Distribution

django_matplotlib-0.1-py3-none-any.whl (12.5 kB view hashes)

Uploaded 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