comparison Sphinx/source/developers/creating-plugins.rst @ 364:234de55ed125

usage of the python plugin
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 31 Mar 2020 18:19:14 +0200
parents d217af5e6cb3
children 0fb9369e893e
comparison
equal deleted inserted replaced
363:9c28eeab2db6 364:234de55ed125
14 14
15 Orthanc plugins must use the `plugin SDK 15 Orthanc plugins must use the `plugin SDK
16 <https://sdk.orthanc-server.com/>`__ and must be written in C or 16 <https://sdk.orthanc-server.com/>`__ and must be written in C or
17 C++. They must also fullfil the terms of the `GPLv3 license 17 C++. They must also fullfil the terms of the `GPLv3 license
18 <http://www.gnu.org/licenses/quick-guide-gplv3.en.html>`__ that is 18 <http://www.gnu.org/licenses/quick-guide-gplv3.en.html>`__ that is
19 used by the core of Orthanc. Here are some resources about creating 19 used by the core of Orthanc.
20 plugins: 20
21 For developers who are more familiar with Python, it is also possible
22 to create plugins using this simpler language. Check out the
23 :ref:`dedicated Python plugin <python-plugin>`.
24
25 Here are some resources about creating C/C++ plugins:
21 26
22 * Sample code for plugins can be found `in the official Orthanc 27 * Sample code for plugins can be found `in the official Orthanc
23 repository 28 repository
24 <https://hg.orthanc-server.com/orthanc/file/default/Plugins/Samples/>`__ 29 <https://hg.orthanc-server.com/orthanc/file/default/Plugins/Samples/>`__
25 (in the ``Plugins/Samples`` folder). 30 (in the ``Plugins/Samples`` folder).