Skip to main content

A reusable Django app to manage MRI data.

Project description

django_mri

A django app to manage MRI data.

Currently only supports data in the DICOM format, and will soon also support NIfTI.

This app is being built and maintained as part of the pylabber project.

Quick start

  1. Add django_mri and django_dicom to your INSTALLED_APPS setting:
    INSTALLED_APPS = [
        ...
        'django_dicom',
        'django_mri',
    ]
  1. Include the dicom URLconf in your project urls.py:
    path("api/", include("django_mri.urls", namespace="mri")),

    # Optional:
    path("api/", include("django_dicom.urls", namespace="dicom")),
    # if you would like to also expose the django_dicom API.
  1. Run python manage.py migrate to create the dicom models.

  2. Start the development server and visit http://127.0.0.1:8000/admin/.

  3. Visit http://127.0.0.1:8000/mri/.

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_mri-0.0.4.tar.gz (31.9 kB view hashes)

Uploaded Source

Built Distribution

django_mri-0.0.4-py3-none-any.whl (43.9 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