Changes between Version 1 and Version 2 of Python_SIP_Tutorial
- Timestamp:
- Feb 3, 2007 6:33:36 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Python_SIP_Tutorial
v1 v2 1 1 2 = Getting Started = 2 3 … … 20 21 * and so on. 21 22 23 == Status == 24 25 The '''py_pjsua''' module has just been released on 0.5.10 version and therefore it's expected to contain few bugs, so it's still in alpha/beta stage. 26 27 Also since the Python abstraction is created manually (rather than using automated Python abstraction generation tools), it is expected that there will be time lag between introduction of new API in PJSUA-API (the C API) and the implementation in the Python module. 28 29 22 30 == Building py_pjsua Module == 23 31 … … 30 38 Using Python build script: 31 39 * Go to {{{pjsip-apps/src/py_pjsua}}} directory. 32 * Run '''{{{'python ./setup.pybuild'}}}'''40 * Run '''{{{'python ./setup.py build'}}}''' 33 41 * The Python module will be placed in {{{build}}} directory inside current directory. 34 * Alternatively run '''{{{'python ./setup.pyinstall'}}}''' to install the '''py_pjsua''' module to Python's site_packages directory.42 * Alternatively run '''{{{'python ./setup.py install'}}}''' to install the '''py_pjsua''' module to Python's site_packages directory. 35 43 44 45 = Developing Python SIP Application = 46 47 == Sample Application == 48 49 Please see [/trac/browser/pjproject/trunk/pjsip-apps/src/py_pjsua/pjsua_app.py pjsua_app.py] for a sample/simple Python application. 50 51 52 == Documentation == 53 54 The documentation for the Python module is integrated with '''[/pjsip/docs/html/group__PJSUA__LIB.htm PJSUA-API Documentation]'''. Please follow the step by step on how to use the API there, as well as specific instructions to use each PJSUA feature. 55