Differences between revisions 1 and 5 (spanning 4 versions)
Revision 1 as of 2005-03-09 19:34:37
Size: 412
Editor: fmfwpr01
Comment:
Revision 5 as of 2008-11-15 13:59:44
Size: 895
Editor: localhost
Comment: converted to 1.6 markup
Deletions are marked like this. Additions are marked like this.
Line 6: Line 6:
Python ''extensions'' are generally written in C/C++ using the Python/C API to implement functions and data types that can be called from the Python interpreter.
Line 7: Line 9:

Python ''embedding'' occurs when the Python interpreter is a subtask of a larger application. Note that embedded Python can also be extended.

== FAQ ==

 * [[http://www.mingw.org/MinGWiki/index.php/Python%20extensions|minGW compiled extensions]]

== Examples ==

== Tutorials ==

  * EmbeddingPythonTutorial
Line 10: Line 24:
* [http://docs.python.org/ext/ext.html Extending and Embedding the Python Interpreter]
* [http://docs.python.org/api/api.html Python/C API Reference Manual]
* [http://www.python.org/doc/faq/extending.html Python Extending/Embedding FAQ]
  * [[http://docs.python.org/ext/ext.html|Extending and Embedding the Python Interpreter]]
  * [[http://docs.python.org/api/api.html|Python/C API Reference Manual]]
  * [[http://www.python.org/doc/faq/extending.html|Python Extending/Embedding FAQ]]
Line 16: Line 30:
CategoryCategory CategoryDocumentation CategoryDocumentation

Extending and Embedding Python

Extending

Python extensions are generally written in C/C++ using the Python/C API to implement functions and data types that can be called from the Python interpreter.

Embedding

Python embedding occurs when the Python interpreter is a subtask of a larger application. Note that embedded Python can also be extended.

FAQ

Examples

Tutorials

Official Documentation


CategoryDocumentation

Embedding and Extending (last edited 2008-11-15 13:59:44 by localhost)

Unable to edit the page? See the FrontPage for instructions.