comparison Sphinx/source/users/rest.rst @ 680:ca814560dcb8

link to OrthancImport.py
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 07 May 2021 15:34:20 +0200
parents 109d663abac0
children b931786385e6
comparison
equal deleted inserted replaced
679:efc39728af20 680:ca814560dcb8
92 <https://stackoverflow.com/questions/463144/php-http-post-fails-when-curl-data-1024/463277#463277>`__:: 92 <https://stackoverflow.com/questions/463144/php-http-post-fails-when-curl-data-1024/463277#463277>`__::
93 93
94 $ curl -X POST -H "Expect:" http://localhost:8042/instances --data-binary @CT.X.1.2.276.0.7230010.dcm 94 $ curl -X POST -H "Expect:" http://localhost:8042/instances --data-binary @CT.X.1.2.276.0.7230010.dcm
95 95
96 The code distribution of Orthanc contains a `sample Python script 96 The code distribution of Orthanc contains a `sample Python script
97 <https://hg.orthanc-server.com/orthanc/file/default/OrthancServer/Resources/Samples/ImportDicomFiles/ImportDicomFiles.py>`__ 97 <https://hg.orthanc-server.com/orthanc/file/Orthanc-1.9.3/OrthancServer/Resources/Samples/ImportDicomFiles/ImportDicomFiles.py>`__
98 that recursively upload the content of some folder into Orthanc using 98 that recursively upload the content of some folder into Orthanc using
99 the REST API:: 99 the REST API::
100 100
101 $ python ImportDicomFiles.py localhost 8042 ~/DICOM/ 101 $ python ImportDicomFiles.py localhost 8042 ~/DICOM/
102 102
103 Starting with Orthanc 1.8.1, the source distribution of Orthanc
104 includes another Python script named ``OrthancImport.py`` that
105 provides more features than ``ImportDicomFiles.py``. It can notably
106 import the content of ``.zip``, ``.tar.gz`` or ``.tar.bz2`` archives
107 without having to uncompress them first. It also provides more
108 comprehensive command-line options. `Check this script out
109 <https://hg.orthanc-server.com/orthanc/file/Orthanc-1.9.3/OrthancServer/Resources/Samples/ImportDicomFiles/OrthancImport.py>`__.
110
103 111
104 .. highlight:: perl 112 .. highlight:: perl
105 113
106 If you are using Powershell (>= 3.0), you can use the following to send a single 114 If you are using Powershell (>= 3.0), you can use the following to send a single
107 Dicom instance to Orthanc:: 115 Dicom instance to Orthanc::