8000 GitHub - sivang/django_mri: A reusable Django app to manage MRI data.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

A reusable Django app to manage MRI data.

License

Notifications You must be signed in to change notification settings

sivang/django_mri

 
 

Repository files navigation

django-mri

A django app to manage MRI data.

Quick start

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

About

A reusable Django app to manage MRI data.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%
0