René's URL Explorer Experiment


Title: 1. Embedding Python in Another Application — Python 3.14.2 documentation

Open Graph Title: 1. Embedding Python in Another Application

Description: The previous chapters discussed how to extend Python, that is, how to extend the functionality of Python by attaching a library of C functions to it. It is also possible to do it the other way arou...

Open Graph Description: The previous chapters discussed how to extend Python, that is, how to extend the functionality of Python by attaching a library of C functions to it. It is also possible to do it the other way arou...

Opengraph URL: https://docs.python.org/3/extending/embedding.html

direct link

Domain: docs.python.org

og:typewebsite
og:site_namePython documentation
og:image:width1146
og:image:height600
og:imagehttps://docs.python.org/3.14/_images/social_previews/summary_extending_embedding_67a579ce.png
og:image:altThe previous chapters discussed how to extend Python, that is, how to extend the functionality of Python by attaching a library of C functions to it. It is also possible to do it the other way arou...
twitter:cardsummary_large_image
theme-color#3776ab
readthedocs-addons-api-version1

Links:

https://www.python.org/
Table of Contentshttps://docs.python.org/3/contents.html
1. Embedding Python in Another Applicationhttps://docs.python.org/3/extending/embedding.html
1.1. Very High Level Embeddinghttps://docs.python.org/3/extending/embedding.html#very-high-level-embedding
1.2. Beyond Very High Level Embedding: An overviewhttps://docs.python.org/3/extending/embedding.html#beyond-very-high-level-embedding-an-overview
1.3. Pure Embeddinghttps://docs.python.org/3/extending/embedding.html#pure-embedding
1.4. Extending Embedded Pythonhttps://docs.python.org/3/extending/embedding.html#extending-embedded-python
1.5. Embedding Python in C++https://docs.python.org/3/extending/embedding.html#embedding-python-in-c
1.6. Compiling and Linking under Unix-like systemshttps://docs.python.org/3/extending/embedding.html#compiling-and-linking-under-unix-like-systems
5. Building C and C++ Extensions on Windowshttps://docs.python.org/3/extending/windows.html
Python/C API Reference Manualhttps://docs.python.org/3/c-api/index.html
Report a bughttps://docs.python.org/3/bugs.html
Show source https://github.com/python/cpython/blob/main/Doc/extending/embedding.rst?plain=1
indexhttps://docs.python.org/3/genindex.html
moduleshttps://docs.python.org/3/py-modindex.html
nexthttps://docs.python.org/3/c-api/index.html
previoushttps://docs.python.org/3/extending/windows.html
Pythonhttps://www.python.org/
3.14.2 Documentationhttps://docs.python.org/3/index.html
Extending and Embedding the Python Interpreterhttps://docs.python.org/3/extending/index.html
1. Embedding Python in Another Applicationhttps://docs.python.org/3/extending/embedding.html
https://docs.python.org/3/extending/embedding.html#embedding-python-in-another-application
Py_Initialize()https://docs.python.org/3/c-api/init.html#c.Py_Initialize
PyRun_SimpleString()https://docs.python.org/3/c-api/veryhigh.html#c.PyRun_SimpleString
PyRun_SimpleFile()https://docs.python.org/3/c-api/veryhigh.html#c.PyRun_SimpleFile
Python/C API Reference Manualhttps://docs.python.org/3/c-api/index.html#c-api-index
https://docs.python.org/3/extending/embedding.html#very-high-level-embedding
Strings and buffershttps://docs.python.org/3/c-api/arg.html#arg-parsing-string-and-buffers
PyConfig.program_namehttps://docs.python.org/3/c-api/init_config.html#c.PyConfig.program_name
Py_InitializeFromConfig()https://docs.python.org/3/c-api/init.html#c.Py_InitializeFromConfig
Py_Initialize()https://docs.python.org/3/c-api/init.html#c.Py_Initialize
Py_FinalizeEx()https://docs.python.org/3/c-api/init.html#c.Py_FinalizeEx
PyRun_SimpleFile()https://docs.python.org/3/c-api/veryhigh.html#c.PyRun_SimpleFile
https://docs.python.org/3/extending/embedding.html#beyond-very-high-level-embedding-an-overview
https://docs.python.org/3/extending/embedding.html#pure-embedding
compile and linkhttps://docs.python.org/3/extending/embedding.html#compiling
PyImport_Import()https://docs.python.org/3/c-api/import.html#c.PyImport_Import
PyUnicode_DecodeFSDefault()https://docs.python.org/3/c-api/unicode.html#c.PyUnicode_DecodeFSDefault
PyObject_GetAttrString()https://docs.python.org/3/c-api/object.html#c.PyObject_GetAttrString
https://docs.python.org/3/extending/embedding.html#extending-embedded-python
Py_Initialize()https://docs.python.org/3/c-api/init.html#c.Py_Initialize
https://docs.python.org/3/extending/embedding.html#embedding-python-in-c
https://docs.python.org/3/extending/embedding.html#compiling-and-linking-under-unix-like-systems
bug reportshttps://docs.python.org/3/bugs.html#reporting-bugs
sysconfig.get_makefile_filename()https://docs.python.org/3/library/sysconfig.html#sysconfig.get_makefile_filename
sysconfighttps://docs.python.org/3/library/sysconfig.html#module-sysconfig
Table of Contentshttps://docs.python.org/3/contents.html
1. Embedding Python in Another Applicationhttps://docs.python.org/3/extending/embedding.html
1.1. Very High Level Embeddinghttps://docs.python.org/3/extending/embedding.html#very-high-level-embedding
1.2. Beyond Very High Level Embedding: An overviewhttps://docs.python.org/3/extending/embedding.html#beyond-very-high-level-embedding-an-overview
1.3. Pure Embeddinghttps://docs.python.org/3/extending/embedding.html#pure-embedding
1.4. Extending Embedded Pythonhttps://docs.python.org/3/extending/embedding.html#extending-embedded-python
1.5. Embedding Python in C++https://docs.python.org/3/extending/embedding.html#embedding-python-in-c
1.6. Compiling and Linking under Unix-like systemshttps://docs.python.org/3/extending/embedding.html#compiling-and-linking-under-unix-like-systems
5. Building C and C++ Extensions on Windowshttps://docs.python.org/3/extending/windows.html
Python/C API Reference Manualhttps://docs.python.org/3/c-api/index.html
Report a bughttps://docs.python.org/3/bugs.html
Show source https://github.com/python/cpython/blob/main/Doc/extending/embedding.rst?plain=1
indexhttps://docs.python.org/3/genindex.html
moduleshttps://docs.python.org/3/py-modindex.html
nexthttps://docs.python.org/3/c-api/index.html
previoushttps://docs.python.org/3/extending/windows.html
Pythonhttps://www.python.org/
3.14.2 Documentationhttps://docs.python.org/3/index.html
Extending and Embedding the Python Interpreterhttps://docs.python.org/3/extending/index.html
1. Embedding Python in Another Applicationhttps://docs.python.org/3/extending/embedding.html
Copyrighthttps://docs.python.org/3/copyright.html
History and Licensehttps://docs.python.org/license.html
Please donate.https://www.python.org/psf/donations/
Found a bughttps://docs.python.org/bugs.html
Sphinxhttps://www.sphinx-doc.org/

Viewport: width=device-width, initial-scale=1.0


URLs of crawlers that visited me.