django-numpy

Application for Django projects that adds some utilities and integration tools with Numpy.


Keywords
python, django, database, numpy
License
GPL-3.0
Install
pip install django-numpy==1.0.0

Documentation

Django Numpy

Version: 1.0.1
DjangoNumpy: Production/Stable
Author: José Antonio Perdiguero López

Django Numpy is an application for Django projects that adds some utilities and integration tools with Numpy.

Quick start

  1. Install this package using pip:

    pip install django-numpy
    
  2. Add PROJECT_PATH to your django settings module.

  3. Add status to your INSTALLED_APPS settings like this:

    INSTALLED_APPS = (
        ...
        'django_numpy',
    )
    

Database Fields

This package adds a new Field type that manages numpy arrays. This field is based on django ArrayField, that only works with PostgreSQL backend. The NumpyArrayField behave just like Django's ArrayField so all parameters defined in official docs.