blob: 92e61327c19158630fc61ffcf12179744f890f25 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001.. _extending-index:
2
3##################################################
4 Extending and Embedding the Python Interpreter
5##################################################
6
7:Release: |version|
8:Date: |today|
9
10This document describes how to write modules in C or C++ to extend the Python
11interpreter with new modules. Those modules can define new functions but also
12new object types and their methods. The document also describes how to embed
13the Python interpreter in another application, for use as an extension language.
14Finally, it shows how to compile and link extension modules so that they can be
15loaded dynamically (at run time) into the interpreter, if the underlying
16operating system supports this feature.
17
18This document assumes basic knowledge about Python. For an informal
19introduction to the language, see :ref:`tutorial-index`. :ref:`reference-index`
20gives a more formal definition of the language. :ref:`library-index` documents
21the existing object types, functions and modules (both built-in and written in
22Python) that give the language its wide application range.
23
24For a detailed description of the whole Python/C API, see the separate
25:ref:`c-api-index`.
26
27.. toctree::
28 :maxdepth: 2
Benjamin Peterson5879d412009-03-30 14:51:56 +000029 :numbered:
Georg Brandl116aa622007-08-15 14:28:22 +000030
31 extending.rst
32 newtypes.rst
33 building.rst
34 windows.rst
35 embedding.rst