https://github.com/thelabbingproject/django_mri
A reusable Django app to manage MRI data.
https://github.com/thelabbingproject/django_mri
django-app mri neuroimaging research-data-management
Last synced: 15 days ago
JSON representation
A reusable Django app to manage MRI data.
- Host: GitHub
- URL: https://github.com/thelabbingproject/django_mri
- Owner: TheLabbingProject
- License: apache-2.0
- Created: 2019-08-30T15:42:45.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-03-20T15:33:51.000Z (over 1 year ago)
- Last Synced: 2025-03-28T05:11:23.553Z (6 months ago)
- Topics: django-app, mri, neuroimaging, research-data-management
- Language: Python
- Homepage: https://django-mri.readthedocs.io/en/latest/
- Size: 22.9 MB
- Stars: 8
- Watchers: 1
- Forks: 4
- Open Issues: 3
-
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-mri/)
[](https://pypi.python.org/pypi/django-mri/)
[](https://app.circleci.com/pipelines/github/TheLabbingProject/django-mri)
[](http://django-mri.readthedocs.io/?badge=latest)
[](https://codecov.io/github/TheLabbingProject/mri?branch=master)# _django_mri_
A django app to manage MRI data.
Currently only supports data in the [DICOM](https://www.dicomstandard.org/) format, and will soon also support [NIfTI](https://nifti.nimh.nih.gov/).
> This app is being built and maintained as part of the [_pylabber_](https://github.com/ZviBaratz/pylabber) project.
## Quick start
1. Add _django_mri_ and _django_dicom_ to your INSTALLED_APPS setting:
```python
INSTALLED_APPS = [
...
'django_dicom',
'django_mri',
]
```2. Include the dicom URLconf in your project urls.py:
```python
path("api/", include("django_mri.urls", namespace="mri")),# Optional:
path("api/", include("django_dicom.urls", namespace="dicom")),
# if you would like to also expose the django_dicom API.
```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/mri/.