You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kamailio/modules/app_python/doc/app_python_admin.xml

152 lines
3.7 KiB

<?xml version="1.0" encoding='ISO-8859-1'?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
<!-- Include general documentation entities -->
<!ENTITY % docentities SYSTEM "../../../docbook/entities.xml">
%docentities;
]>
<!-- Module User's Guide -->
<chapter>
<title>&adminguide;</title>
<section>
<title>Overview</title>
<para>
This module allows executing Python scripts from config file,
exporting functions to access the SIP message from Python.
</para>
<para>
For some basic examples of Python scripts that can be used with
this module, look at the files inside source tree located at
'modules/app_python/python_examples/'.
</para>
</section>
<section>
<title>Dependencies</title>
<section>
<title>&kamailio; Modules</title>
<para>
The following modules must be loaded before this module:
<itemizedlist>
<listitem>
<para>
<emphasis>none</emphasis>.
</para>
</listitem>
</itemizedlist>
</para>
</section>
<section>
<title>External Libraries or Applications</title>
<para>
The following libraries or applications must be installed before running
&kamailio; with this module loaded:
<itemizedlist>
<listitem>
<para>
<emphasis>python-dev</emphasis> - Python devel library.
</para>
</listitem>
</itemizedlist>
</para>
</section>
</section>
<section>
<title>Parameters</title>
<section>
<title><varname>script_name</varname> (string)</title>
<para>
The path to the fiel with Python code to be executed
from configuration file.
</para>
<para>
<emphasis>
Default value is <quote>/usr/local/etc/kamailio/handler.py</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>script_name</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("app_python", "script_name", "/usr/local/etc/kamailio/myscript.py")
...
</programlisting>
</example>
</section>
<section>
<title><varname>mod_init_function</varname> (string)</title>
<para>
The Python function to be executed by this module when
it is initialied by &kamailio;.
</para>
<para>
<emphasis>
Default value is <quote>mod_init</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>mod_init_function</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("app_python", "mod_init_function", "my_mod_init")
...
</programlisting>
</example>
</section>
<section>
<title><varname>child_init_method</varname> (string)</title>
<para>
The Python function to be executed by this module when
a new worker process (child) is initialied by &kamailio;.
</para>
<para>
<emphasis>
Default value is <quote>child_init</quote>.
</emphasis>
</para>
<example>
<title>Set <varname>child_init_method</varname> parameter</title>
<programlisting format="linespecific">
...
modparam("app_python", "child_init_method", "my_child_init")
...
</programlisting>
</example>
</section>
</section>
<section>
<title>Functions</title>
<section>
<title>
<function moreinfo="none">python_exec(method [, args])</function>
</title>
<para>
Execute the Python function with the name given by the parameter 'method'.
Optionally can be provided a second string with parameters to be passed
to the Python function.
</para>
<example>
<title><function>python_exec</function> usage</title>
<programlisting format="linespecific">
...
python_exec("my_python_function");
python_exec("my_python_function", "my_params");
...
</programlisting>
</example>
</section>
</section>
</chapter>