TheLabbingProject / django_dicom

A reusable django app to manage DICOM files.

Home Page:https://django-dicom.readthedocs.io/en/latest/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PyPI version PyPI status CircleCI ReadTheDocs codecov.io

django-dicom

A django app to manage DICOM files.

This app creates the basic models for DICOM data abstraction: Study, Patient, Series, and Image. The models are complemented with some utility methods to facilitate data access.

Quick start

  1. Add "django_dicom" to your INSTALLED_APPS setting:
    INSTALLED_APPS = [
        ...
        'django_dicom',
    ]
  1. Include the dicom URLconf in your project urls.py:
    path('dicom/', include('django_dicom.urls')),
  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/dicom/.

Documentation

The full documentation can be found here.

About

A reusable django app to manage DICOM files.

https://django-dicom.readthedocs.io/en/latest/

License:Apache License 2.0


Languages

Language:Python 98.5%Language:HTML 1.5%Language:CSS 0.0%