René's URL Explorer Experiment


Title: 7. Using Python on iOS — Python 3.14.2 documentation

Open Graph Title: 7. Using Python on iOS

Description: Authors, Russell Keith-Magee (2024-03),. Python on iOS is unlike Python on desktop platforms. On a desktop platform, Python is generally installed as a system resource that can be used by any user ...

Open Graph Description: Authors, Russell Keith-Magee (2024-03),. Python on iOS is unlike Python on desktop platforms. On a desktop platform, Python is generally installed as a system resource that can be used by any user ...

Opengraph URL: https://docs.python.org/3/using/ios.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_using_ios_cbb10af8.png
og:image:altAuthors, Russell Keith-Magee (2024-03),. Python on iOS is unlike Python on desktop platforms. On a desktop platform, Python is generally installed as a system resource that can be used by any user ...
twitter:cardsummary_large_image
theme-color#3776ab
readthedocs-addons-api-version1

Links:

https://www.python.org/
Table of Contentshttps://docs.python.org/contents.html
7. Using Python on iOShttps://docs.python.org/using/ios.html
7.1. Python at runtime on iOShttps://docs.python.org/using/ios.html#python-at-runtime-on-ios
7.1.1. iOS version compatibilityhttps://docs.python.org/using/ios.html#ios-version-compatibility
7.1.2. Platform identificationhttps://docs.python.org/using/ios.html#platform-identification
7.1.3. Standard library availabilityhttps://docs.python.org/using/ios.html#standard-library-availability
7.1.4. Binary extension moduleshttps://docs.python.org/using/ios.html#binary-extension-modules
7.1.5. Compiler stub binarieshttps://docs.python.org/using/ios.html#compiler-stub-binaries
7.2. Installing Python on iOShttps://docs.python.org/using/ios.html#installing-python-on-ios
7.2.1. Tools for building iOS appshttps://docs.python.org/using/ios.html#tools-for-building-ios-apps
7.2.2. Adding Python to an iOS projecthttps://docs.python.org/using/ios.html#adding-python-to-an-ios-project
7.2.3. Testing a Python packagehttps://docs.python.org/using/ios.html#testing-a-python-package
7.3. App Store Compliancehttps://docs.python.org/using/ios.html#app-store-compliance
7.3.1. Incompatible code in the standard libraryhttps://docs.python.org/using/ios.html#incompatible-code-in-the-standard-library
7.3.2. Privacy manifestshttps://docs.python.org/using/ios.html#privacy-manifests
6. Using Python on Androidhttps://docs.python.org/using/android.html
8. Editors and IDEshttps://docs.python.org/using/editors.html
Report a bughttps://docs.python.org/bugs.html
Show source https://github.com/python/cpython/blob/main/Doc/using/ios.rst?plain=1
indexhttps://docs.python.org/genindex.html
moduleshttps://docs.python.org/py-modindex.html
nexthttps://docs.python.org/using/editors.html
previoushttps://docs.python.org/using/android.html
Pythonhttps://www.python.org/
3.14.2 Documentationhttps://docs.python.org/index.html
Python Setup and Usagehttps://docs.python.org/using/index.html
7. Using Python on iOShttps://docs.python.org/using/ios.html
https://docs.python.org/using/ios.html#using-python-on-ios
Python embedding APIhttps://docs.python.org/extending/embedding.html#embedding
BeeWarehttps://beeware.org
Kivyhttps://kivy.org
https://docs.python.org/using/ios.html#python-at-runtime-on-ios
https://docs.python.org/using/ios.html#ios-version-compatibility
--hosthttps://docs.python.org/using/configure.html#cmdoption-host
https://docs.python.org/using/ios.html#platform-identification
platform.ios_ver()https://docs.python.org/library/platform.html#platform.ios_ver
platform.system()https://docs.python.org/library/platform.html#platform.system
os.uname()https://docs.python.org/library/os.html#os.uname
https://docs.python.org/using/ios.html#standard-library-availability
API availability guide for iOShttps://docs.python.org/library/intro.html#mobile-availability
https://docs.python.org/using/ios.html#binary-extension-modules
adding Python to your projecthttps://docs.python.org/using/ios.html#adding-ios
AppleFrameworkLoaderhttps://docs.python.org/library/importlib.html#importlib.machinery.AppleFrameworkLoader
ModuleSpechttps://docs.python.org/library/importlib.html#importlib.machinery.ModuleSpec
https://docs.python.org/using/ios.html#compiler-stub-binaries
https://docs.python.org/using/ios.html#installing-python-on-ios
https://docs.python.org/using/ios.html#tools-for-building-ios-apps
https://docs.python.org/using/ios.html#adding-python-to-an-ios-project
PythonKithttps://github.com/pvieito/PythonKit
Apple/iOS/README.mdhttps://github.com/python/cpython/tree/3.14/Apple/iOS/README.md
PyPreConfig.utf8_modehttps://docs.python.org/c-api/init_config.html#c.PyPreConfig.utf8_mode
PyConfig.buffered_stdiohttps://docs.python.org/c-api/init_config.html#c.PyConfig.buffered_stdio
PyConfig.write_bytecodehttps://docs.python.org/c-api/init_config.html#c.PyConfig.write_bytecode
PyConfig.install_signal_handlershttps://docs.python.org/c-api/init_config.html#c.PyConfig.install_signal_handlers
PyConfig.use_system_loggerhttps://docs.python.org/c-api/init_config.html#c.PyConfig.use_system_logger
PYTHONHOMEhttps://docs.python.org/using/cmdline.html#envvar-PYTHONHOME
PYTHONPATHhttps://docs.python.org/using/cmdline.html#envvar-PYTHONPATH
PYTHONPATHhttps://docs.python.org/using/cmdline.html#envvar-PYTHONPATH
site.addsitedir()https://docs.python.org/library/site.html#site.addsitedir
PYTHONPATHhttps://docs.python.org/using/cmdline.html#envvar-PYTHONPATH
sys.pathhttps://docs.python.org/library/sys.html#sys.path
https://docs.python.org/using/ios.html#testing-a-python-package
a testbed projecthttps://github.com/python/cpython/tree/3.14/Apple/iOS/testbed
Apple/iOS/README.mdhttps://github.com/python/cpython/tree/3.14/Apple/iOS/README.md
https://docs.python.org/using/ios.html#app-store-compliance
https://docs.python.org/using/ios.html#incompatible-code-in-the-standard-library
a patch filehttps://github.com/python/cpython/tree/3.14/Mac/Resources/app-store-compliance.patch
https://docs.python.org/using/ios.html#privacy-manifests
certain third-party libraries to provide a Privacy Manifesthttps://developer.apple.com/support/third-party-SDK-requirements
Table of Contentshttps://docs.python.org/contents.html
7. Using Python on iOShttps://docs.python.org/using/ios.html
7.1. Python at runtime on iOShttps://docs.python.org/using/ios.html#python-at-runtime-on-ios
7.1.1. iOS version compatibilityhttps://docs.python.org/using/ios.html#ios-version-compatibility
7.1.2. Platform identificationhttps://docs.python.org/using/ios.html#platform-identification
7.1.3. Standard library availabilityhttps://docs.python.org/using/ios.html#standard-library-availability
7.1.4. Binary extension moduleshttps://docs.python.org/using/ios.html#binary-extension-modules
7.1.5. Compiler stub binarieshttps://docs.python.org/using/ios.html#compiler-stub-binaries
7.2. Installing Python on iOShttps://docs.python.org/using/ios.html#installing-python-on-ios
7.2.1. Tools for building iOS appshttps://docs.python.org/using/ios.html#tools-for-building-ios-apps
7.2.2. Adding Python to an iOS projecthttps://docs.python.org/using/ios.html#adding-python-to-an-ios-project
7.2.3. Testing a Python packagehttps://docs.python.org/using/ios.html#testing-a-python-package
7.3. App Store Compliancehttps://docs.python.org/using/ios.html#app-store-compliance
7.3.1. Incompatible code in the standard libraryhttps://docs.python.org/using/ios.html#incompatible-code-in-the-standard-library
7.3.2. Privacy manifestshttps://docs.python.org/using/ios.html#privacy-manifests
6. Using Python on Androidhttps://docs.python.org/using/android.html
8. Editors and IDEshttps://docs.python.org/using/editors.html
Report a bughttps://docs.python.org/bugs.html
Show source https://github.com/python/cpython/blob/main/Doc/using/ios.rst?plain=1
indexhttps://docs.python.org/genindex.html
moduleshttps://docs.python.org/py-modindex.html
nexthttps://docs.python.org/using/editors.html
previoushttps://docs.python.org/using/android.html
Pythonhttps://www.python.org/
3.14.2 Documentationhttps://docs.python.org/index.html
Python Setup and Usagehttps://docs.python.org/using/index.html
7. Using Python on iOShttps://docs.python.org/using/ios.html
Copyrighthttps://docs.python.org/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.