Metadata-Version: 2.1
Name: django-dicom
Version: 0.0.3
Summary: A simple Django app to manage DICOM files.
Home-page: https://github.com/TheLabbingProject/django_dicom
Author: Zvi Baratz
Author-email: baratzz@pm.me
License: AGPLv3
Keywords: django mri dicom dcm neuroimaging
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: Django (==2.*)
Requires-Dist: djangorestframework (~=3.10)
Requires-Dist: django-extensions (~=2.2)
Requires-Dist: django-filter (~=2.2)
Requires-Dist: numpy (~=1.17)
Requires-Dist: pandas (~=0.25)
Requires-Dist: pydicom (~=1.3)
Requires-Dist: xlrd (~=1.2)
Provides-Extra: dev
Requires-Dist: black (==19.10b0) ; extra == 'dev'
Requires-Dist: coverage (~=4.5) ; extra == 'dev'
Requires-Dist: factory-boy (~=2.12) ; extra == 'dev'
Requires-Dist: flake8 (~=3.7) ; extra == 'dev'
Requires-Dist: ipython (~=7.10) ; extra == 'dev'
Requires-Dist: pytest (~=5.3) ; extra == 'dev'
Requires-Dist: sphinx (~=2.2) ; extra == 'dev'
Requires-Dist: sphinx-rtd-theme (~=0.4) ; extra == 'dev'

# 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:

<pre>
    INSTALLED_APPS = [  
        ...  
        'django_dicom',  
    ]  
</pre>

2. Include the dicom URLconf in your project urls.py:

<pre>
    path('dicom/', include('django_dicom.urls')),
</pre>

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/.




[1]: https://www.dicomstandard.org/


