https://github.com/thelabbingproject/django_dicom
A reusable django app to manage DICOM files.
https://github.com/thelabbingproject/django_dicom
dicom django-app medical-imaging research-data-management
Last synced: 6 months ago
JSON representation
A reusable django app to manage DICOM files.
- Host: GitHub
- URL: https://github.com/thelabbingproject/django_dicom
- Owner: TheLabbingProject
- License: apache-2.0
- Created: 2019-08-30T15:43:17.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2024-03-20T15:33:14.000Z (over 1 year ago)
- Last Synced: 2025-03-28T05:11:16.794Z (6 months ago)
- Topics: dicom, django-app, medical-imaging, research-data-management
- Language: Python
- Homepage: https://django-dicom.readthedocs.io/en/latest/
- Size: 2.18 MB
- Stars: 6
- Watchers: 1
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[](https://pypi.python.org/pypi/django-dicom/)
[](https://pypi.python.org/pypi/django-dicom/)
[](https://app.circleci.com/pipelines/github/TheLabbingProject/django-dicom)
[](http://django-dicom.readthedocs.io/?badge=latest)
[](https://codecov.io/github/TheLabbingProject/django_dicom?branch=master)# django-dicom
A django app to manage [DICOM][1] 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',
]2. Include the dicom URLconf in your project urls.py:
path('dicom/', include('django_dicom.urls')),3. Run `python manage.py migrate` to create the dicom models.
4. Start the development server and visit http://127.0.0.1:8000/admin/.
5. Visit http://127.0.0.1:8000/dicom/.
## Documentation
The full documentation can be found [here](http://django-dicom.readthedocs.io).
[1]: https://www.dicomstandard.org/