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.
- Add "django_dicom" to your INSTALLED_APPS setting:
 
    INSTALLED_APPS = [
        ...
        'django_dicom',
    ]
- Include the dicom URLconf in your project urls.py:
 
    path('dicom/', include('django_dicom.urls')),
- 
Run
python manage.py migrateto create the dicom models. - 
Start the development server and visit http://127.0.0.1:8000/admin/.
 - 
Visit http://127.0.0.1:8000/dicom/.
 
The full documentation can be found here.