forked from gacou54/pyorthanc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2bb23bd
commit 34b6ec9
Showing
9 changed files
with
57 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# Citation | ||
If you publish using PyOrthanc, we kindly ask that you credit us. PyOrthanc can be found on Zenodo : | ||
[https://doi.org/10.5281/zenodo.3387551](https://doi.org/10.5281/zenodo.3387551). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# Contribute | ||
|
||
You can contribute to this project with the following steps: | ||
|
||
1. First, fork the project on Github | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,39 @@ | ||
# **Presentation** | ||
Python library that wraps the Orthanc REST API and facilitates the manipulation | ||
of data with several cool utilities. | ||
<!-- ====================== TOC ====================== --> | ||
<!-- Generated by mkdocs-toc-md plugin --> | ||
<!-- ================================================= --> | ||
|
||
## **What for ?** | ||
# PyOrthanc | ||
|
||
The aim of the PyOrthanc module is to easy use the Orthanc Dicom server API. | ||
Python library that wraps the Orthanc REST API and facilitates the manipulation of data with several cool utilities. | ||
What for ? | ||
|
||
The aim of the PyOrthanc module is to easy use the Orthanc Dicom server API. | ||
|
||
It has access to the full available Orthanc API and get the useful return without dealing with http requests. | ||
|
||
It also allows you to find specifics series/studies/patients | ||
according to complex filters | ||
It also allows you to find specifics series/studies/patients according to complex filters | ||
|
||
## [First steps](tutorial/quickstart.md#first-steps) | ||
### [Requirements](tutorial/quickstart.md#requirements) | ||
### [Installation](tutorial/quickstart.md#installation) | ||
### [Getting started](tutorial/quickstart.md#getting-started) | ||
* [Import pyorthanc library](tutorial/quickstart.md#import-pyorthanc-library) | ||
* [Connect to Orthanc](tutorial/quickstart.md#connect-to-orthanc) | ||
* [Upload DICOM files to Orthanc:](tutorial/quickstart.md#upload-dicom-files-to-orthanc) | ||
* [Getting list of connected remote modalities:](tutorial/quickstart.md#getting-list-of-connected-remote-modalities) | ||
* [Find and download patients according to criteria:](tutorial/quickstart.md#find-and-download-patients-according-to-criteria) | ||
* [Query (C-Find) and Retrieve (C-Move) from remote modality:](tutorial/quickstart.md#query-c-find-and-retrieve-c-move-from-remote-modality) | ||
### [Full basic examples](tutorial/quickstart.md#full-basic-examples) | ||
* [Access instance informations](tutorial/quickstart.md#access-instance-informations) | ||
### [Some useful commands](tutorial/quickstart.md#some-useful-commands) | ||
* [Docker commands](tutorial/quickstart.md#docker-commands) | ||
### [Advanced examples](tutorial/advanced.md) | ||
* [Transfer data from a PACS to a Orthanc server](tutorial/advanced.md#transfer-data-from-a-pacs-to-a-orthanc-server) | ||
### [Releases](releases/releases.md) | ||
* [Lastest release : 1.12.1](releases/releases.md#lastest-release-1121) | ||
* [Release 1.11.5](releases/releases.md#release-1115) | ||
## [Contribute](contributing.md#contribute) | ||
## [Contacts](contacts.md#contacts) | ||
* [Maintainers Team](contacts.md#maintainers-team) | ||
* [Useful links](contacts.md#useful-links) | ||
## [Citation](citation.md#citation) |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
Example of usage | ||
---------------- | ||
# Advanced examples | ||
|
||
Here is a list of complete examples with pyorthanc | ||
|
||
| code | | ||
|-----------------------------------------------------------------------------------------------------------------| | ||
| [Transfer data from a PACS to a Orthanc server](https://github.com/ylemarechal/dicom-transfer) | | ||
## Transfer data from a PACS to a Orthanc server | ||
|
||
[Transfer data from a PACS to a Orthanc server](https://github.com/ylemarechal/dicom-transfer) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters