├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── orthanc-auto-forward-dicom.py ├── orthanc-auto-forward-peer.py ├── orthanc-cmove-to-rest-interceptor.py ├── orthanc-dicom-router.py ├── orthanc-purge-old-studies.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohannadhussain/orthanc-plugin-scripts/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohannadhussain/orthanc-plugin-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohannadhussain/orthanc-plugin-scripts/HEAD/README.md -------------------------------------------------------------------------------- /orthanc-auto-forward-dicom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohannadhussain/orthanc-plugin-scripts/HEAD/orthanc-auto-forward-dicom.py -------------------------------------------------------------------------------- /orthanc-auto-forward-peer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohannadhussain/orthanc-plugin-scripts/HEAD/orthanc-auto-forward-peer.py -------------------------------------------------------------------------------- /orthanc-cmove-to-rest-interceptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohannadhussain/orthanc-plugin-scripts/HEAD/orthanc-cmove-to-rest-interceptor.py -------------------------------------------------------------------------------- /orthanc-dicom-router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohannadhussain/orthanc-plugin-scripts/HEAD/orthanc-dicom-router.py -------------------------------------------------------------------------------- /orthanc-purge-old-studies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohannadhussain/orthanc-plugin-scripts/HEAD/orthanc-purge-old-studies.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | rule-engine 3 | --------------------------------------------------------------------------------