Mercurial > hg > orthanc-book
comparison Sphinx/source/plugins/python.rst @ 709:9d5e17100a8d
update statistics from 2.0 to 3.2
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 11 Jun 2021 14:11:17 +0200 |
parents | cd70d23f34bc |
children | 41e450b5ac2e |
comparison
equal
deleted
inserted
replaced
708:cd70d23f34bc | 709:9d5e17100a8d |
---|---|
14 <creating-plugins>` using the `Python programming language | 14 <creating-plugins>` using the `Python programming language |
15 <https://en.wikipedia.org/wiki/Python_(programming_language)>`__ | 15 <https://en.wikipedia.org/wiki/Python_(programming_language)>`__ |
16 instead of the more complex C/C++ programming languages. | 16 instead of the more complex C/C++ programming languages. |
17 | 17 |
18 Python plugins have access to more features and a more consistent SDK | 18 Python plugins have access to more features and a more consistent SDK |
19 than :ref:`Lua scripts <lua>`. The Python API is automatically | 19 than :ref:`Lua scripts <lua>`. The largest part of the Python API is |
20 generated from the `Orthanc plugin SDK in C | 20 automatically generated from the `Orthanc plugin SDK in C |
21 <https://hg.orthanc-server.com/orthanc/file/Orthanc-1.9.3/OrthancServer/Plugins/Include/orthanc/OrthancCPlugin.h>`__ | 21 <https://hg.orthanc-server.com/orthanc/file/Orthanc-1.9.3/OrthancServer/Plugins/Include/orthanc/OrthancCPlugin.h>`__ |
22 using the `Clang <https://en.wikipedia.org/wiki/Clang>`__ compiler | 22 using the `Clang <https://en.wikipedia.org/wiki/Clang>`__ compiler |
23 front-end. | 23 front-end. |
24 | 24 |
25 As of release 2.0 of the plugin, the coverage of the C SDK is about | 25 As of release 3.2 of the plugin, the coverage of the C SDK is about |
26 75% (119 functions are automatically wrapped in Python out of a total | 26 87% (138 functions are automatically wrapped in Python out of a total |
27 of 157 functions in the Orthanc SDK 1.7.2). | 27 of 158 functions from the Orthanc SDK 1.8.1). |
28 | 28 |
29 | 29 |
30 Source code | 30 Source code |
31 ----------- | 31 ----------- |
32 | 32 |