Differences between revisions 73 and 90 (spanning 17 versions)
Revision 73 as of 2012-08-16 15:35:31
Size: 7345
Editor: 91
Comment: wiki restore 2013-01-23
Revision 90 as of 2019-11-08 18:21:16
Size: 8335
Editor: WimLavrijsen
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Line 6: Line 5:
Line 8: Line 6:

Line 12: Line 8:

* [[Pyrex|Pyrex]] - write your extension module on Python (!)
 * [[Pyrex]] - write your extension module on Python (!)
Line 16: Line 11:
 * [[http://starship.python.net/crew/gmcm/scxx.html|SCXX]]
Line 18: Line 12:
 * [[elmer|elmer]] - compile and run python code from C, as if it was written in C  * [[elmer]] - compile and run python code from C, as if it was written in C
Line 20: Line 14:
 * [[weave|weave]] - include C code lines in Python program  * [[weave]] - include C code lines in Python program (deprecated in favor of Cython)
Line 22: Line 16:
 * [[http://cffi.readthedocs.org/|CFFI]] - interact with almost any C code from Python, based on C-like declarations that you can often copy-paste from header files or documentation.
Line 25: Line 19:

Line 29: Line 21:

* [[boost.python|boost.python]] - Expose C++ classes functions and objects to Python, and vice-versa, using just C++ compiler
 * [[boost.python]] - Expose C++ classes functions and objects to Python, and vice-versa, using just C++ compiler
Line 32: Line 23:
 * [[http://pwig.sourceforge.net/|pwig]] is a SWIG extension for writting new language modules in Python.
 * [[http://code.google.com/p/pybindgen/|PyBindGen]] Python bindings code generator for pure C or C++ APIs. The generator is written in Python and has low complexity. The generated code is lean, efficient, and highly readable
 * [[http://developer.qt.nokia.com/wiki/Category:LanguageBindings::PySide::Shiboken|shiboken]] - Binding Generator used to create [[PySide|PySide]] Python bindings for Qt
 * [[SIP|SIP]] - similar to SWIG but specialised for Python and C++. Used to create [[PyQt|PyQt]], the [[Qt|Qt]] API wrapper library
 * [[http://pwig.sourceforge.net/|pwig]] is a SWIG extension for writing new language modules in Python.
 * [[https://github.com/gjcarneiro/pybindgen|PyBindGen]] Python bindings code generator for pure C or C++ APIs. The generator is written in Python and has low complexity. The generated code is lean, efficient, and highly readable
 * [[https://pyside.github.io/docs/shiboken/|shiboken]] - Binding Generator used to create PySide Python bindings for Qt
 * [[SIP]] - similar to SWIG but specialised for Python and C++. Used to create PyQt, the [[Qt]] API wrapper library
Line 37: Line 28:
 * [[https://github.com/wjakob/pybind11|pybind11]] - Similar to Boost.Python, but with a lean header-only implementation for C++11-capable compilers.
 * [[https://github.com/google/clif|pyclif]] - Google tool. Similar to SWIG, but user-friendly and targeted only C++11 well-written libs.
 * [[cppyy]] - Fast, automatic, Python-C++ bindings, including run-time template instantiations, cross-inheritance, auto-casting, etc.
 * [[https://www.scapix.com/|Scapix Language Bridge]] - generates Python (and other languages) bindings directly from C++ headers.
Line 40: Line 34:
Line 43: Line 36:

 * Embedding Python in Multi-Threaded C/C++ Applications in [[http://www.linuxjournal.com/article.php?sid=3641|LinuxJournal]]
 * Building Hybrid Systems with Boost.Python in [[http://www.cuj.com/documents/s=8188/cuj0307abrahams/|C/C++ User Journal]]
 * [[http://dales.rmplc.co.uk/Duncan/accu/integratingpython.html|Integrating Python, C and C++]], presented at the ACCU conference by Duncan Booth, and his [[http://dales.rmplc.co.uk/Duncan/accu|conference slides]]
 * Using Python as glue [[https://docs.scipy.org/doc/numpy/user/c-info.python-as-glue.html|SciPy Documentation]]
 * Building Hybrid Systems with Boost.Python in [[http://www.boost.org/doc/libs/develop/libs/python/doc/html/article.html|C/C++ User Journal]] (2003)
 * Integrating Python, C and C++, presented at the ACCU conference by Duncan Booth (2003)
 * Embedding Python in Multi-Threaded C/C++ Applications in [[http://www.linuxjournal.com/article.php?sid=3641|LinuxJournal]] (2000)
Line 50: Line 42:
Line 53: Line 44:

* [[AppsWithPythonScripting|AppsWithPythonScripting]]
 * AppsWithPythonScripting
Line 58: Line 47:


* [[Python4Delphi|Python4Delphi]] - Python for Delphi is a set of free components that wrap up the Python Dll into Delphi. (http://code.google.com/p/python4delphi/)
 * Python4Delphi - Python for Delphi is a set of free components that wrap up the Python Dll into Delphi. (https://github.com/pyscripter/python4delphi)
Line 64: Line 50:


* [[F2PY|F2PY]] - Fortran to Python Interface Generator (http://cens.ioc.ee/projects/f2py2e/)
 * [[PyFort|PyFort]] - The Python-Fortran connection tool (http://pyfortran.sourceforge.net/)
 * [[F2PY]] - Fortran to Python Interface Generator (http://cens.ioc.ee/projects/f2py2e/)
 * PyFort - The Python-Fortran connection tool (http://pyfortran.sourceforge.net/)
Line 71: Line 54:


* [[CLPython|CLPython]] - Python implemented in Common Lisp
 * [[CLPython]] - Python implemented in Common Lisp
Line 77: Line 58:
Line 79: Line 59:


* [[PyLog|PyLog]] (actually two ''different'' products)
 * PyLog (actually two ''different'' products)
Line 87: Line 65:
Line 90: Line 67:
Line 92: Line 68:


* [[Jython|Jython]] - Python implemented in Java
 * [[JPype|JPype]] - Java for CPython
 * [[Jepp|Jepp]] - Java embedded Python
 * [[Jython]] - Python implemented in Java
 * [[JPype]] - Allows Python to run java commands
 * [[Jepp]] - Java embedded Python
Line 98: Line 72:
 * [[http://pypi.python.org/pypi/javabridge|Javabridge]] - a package for running and interacting with the JVM from CPython
 * [[https://www.py4j.org/index.html|py4j]] - Allows Python to run java commands.
 * [[http://pybee.org/voc/|voc]] - Part of BeeWare suite. Converts python code to Java bytecode.
 * [[https://github.com/chrishumphreys/p2j|p2j]] - Converts Python code to Java. No longer developed.
Line 101: Line 78:

Line 107: Line 82:
Line 109: Line 83:

Line 113: Line 85:

* [[PyPerl|PyPerl]] http://search.cpan.org/dist/pyperl/
 * PyPerl http://search.cpan.org/dist/pyperl/
Line 116: Line 87:
 * [[PyPerlish|PyPerlish]] - Perl idioms in Python
 * PyPerlish - Perl idioms in Python
Line 121: Line 91:
Line 123: Line 92:

Line 126: Line 93:
 * PHP "Serialize" in Python http://hurring.com/scott/code/python/serialize/
 * PHP "Serialize" in Python http://hurring.com/scott/code/python/serialize/ (broken link; see the [[http://web.archive.org/web/20110807032037/http://hurring.com/scott/code/python/serialize/|Web Archive Wayback Machine]] for the latest working version)
Line 130: Line 96:


* RPy http://rpy.sourceforge.net
 * RSPython http://www.omegahat.org/RSPython
 * RPy [[http://rpy.sourceforge.net/|http://rpy.sourceforge.net]]
 * RSPython http://www.omegahat.net/RSPython
Line 137: Line 100:

Line 141: Line 102:
Line 143: Line 103:


 * [[elmer|elmer]] - compile and run python code from Tcl, as if it was written in Tcl
 * [[http://jfontain.free.fr/tclpython.htm|TclPython]] - a Python package for Tcl allows execution of Python (version 2.2 or above) code from a Tcl interpreter.
 * [[elmer]] - compile and run python code from Tcl, as if it was written in Tcl
 * [[https://github.com/amykyta3/tclpython|TclPython]] - A package for Tcl that allows you to pass strings of Python code from a Tcl environment to a Python (Python 2.x or 3.x) interpreter.
Line 149: Line 107:
Line 151: Line 108:

Line 157: Line 112:
Line 159: Line 113:

Line 163: Line 115:
Line 165: Line 116:

Line 168: Line 117:
 * [[PythonVsHaskell|PythonVsHaskell]] has a section "Using both Python & Haskell with ctypes".
 * PythonVsHaskell has a section "Using both Python & Haskell with ctypes".
Line 172: Line 120:


 * [[LotusNotes|LotusNotes]] http://www.dominopower.com/issuesprint/issue200008/command.html
 * [[PostgreSQL|
PostgreSQL]] http://www.linuxgazette.com/issue80/nielsen.html
 * [[RenderMan|RenderMan]] http://www.lysator.liu.se/~ture/terry.html
 * [[CorbaPython|CorbaPython]]: for a generic solution to language integration
 * LotusNotes http://www.dominopower.com/issuesprint/issue200008/command.html
 * [[PostgreSQL]] http://www.linuxgazette.com/issue80/nielsen.html
 * RenderMan http://www.lysator.liu.se/~ture/terry.html
 * CorbaPython: for a generic solution to language integration
Line 182: Line 127:
Line 184: Line 128:

Line 187: Line 129:
 * Yaml: http://www.yaml.org
 * Yaml: [[http://www.yaml.org/|http://www.yaml.org]]
Line 191: Line 132:

[Hint: The idea is to create pages for the stuff, not just link it.]

C/C++

There a various tools which make it easier to bridge the gap between Python and C/C++:

  • Pyrex - write your extension module on Python (!)

  • Cython -- Cython -- an improved version of Pyrex

  • CXX - PyCXX - helper lib for writing Python extensions in C++

  • ctypes is a Python module allowing to create and manipulate C data types in Python. These can then be passed to C-functions loaded from dynamic link libraries.

  • elmer - compile and run python code from C, as if it was written in C

  • PicklingTools is a collection of libraries for exchanging Python Dictionaries between C++ and Python.

  • weave - include C code lines in Python program (deprecated in favor of Cython)

  • ackward exposes parts of Python's standard library as idiomatic C++

  • CFFI - interact with almost any C code from Python, based on C-like declarations that you can often copy-paste from header files or documentation.

C/C++ Binding Generators

Tools to make C/C++ functions/methods accessible from Python by generating binding (Python extension or module) from header files.

  • boost.python - Expose C++ classes functions and objects to Python, and vice-versa, using just C++ compiler

  • PyAutoC - Automatically wrap C functions and structs, using just C compiler.

  • pwig is a SWIG extension for writing new language modules in Python.

  • PyBindGen Python bindings code generator for pure C or C++ APIs. The generator is written in Python and has low complexity. The generated code is lean, efficient, and highly readable

  • shiboken - Binding Generator used to create PySide Python bindings for Qt

  • SIP - similar to SWIG but specialised for Python and C++. Used to create PyQt, the Qt API wrapper library

  • SWIG - generate extension module from your .h files

  • pybind11 - Similar to Boost.Python, but with a lean header-only implementation for C++11-capable compilers.

  • pyclif - Google tool. Similar to SWIG, but user-friendly and targeted only C++11 well-written libs.

  • cppyy - Fast, automatic, Python-C++ bindings, including run-time template instantiations, cross-inheritance, auto-casting, etc.

  • Scapix Language Bridge - generates Python (and other languages) bindings directly from C++ headers.


Articles

  • Using Python as glue SciPy Documentation

  • Building Hybrid Systems with Boost.Python in C/C++ User Journal (2003)

  • Integrating Python, C and C++, presented at the ACCU conference by Duncan Booth (2003)
  • Embedding Python in Multi-Threaded C/C++ Applications in LinuxJournal (2000)


Related

Delphi

Fortran

Lisp

Prolog

See also http://www.google.com/search?hl=en&lr=&ie=ISO-8859-1&q=Python+prolog

Java

  • Jython - Python implemented in Java

  • JPype - Allows Python to run java commands

  • Jepp - Java embedded Python

  • JCC - a C++ code generator for calling Java from C++/Python

  • Javabridge - a package for running and interacting with the JVM from CPython

  • py4j - Allows Python to run java commands.

  • voc - Part of BeeWare suite. Converts python code to Java bytecode.

  • p2j - Converts Python code to Java. No longer developed.

C#/.NET

  • ActiveState research

  • Python for .NET is a near-seamless integration of the CPython runtime with the .NET Common Language Runtime (CLR).

  • IronPython is an implementation of Python for .net, which allows you to import .net class libraries seamlessly in Python.

Perl

See http://www.faqts.com/knowledge_base/view.phtml/aid/17202/fid/1102

For converting/porting Perl code to Python the tool 'Bridgekeeper' http://www.crazy-compilers.com/bridgekeeper/ may be handy.

PHP

R

Objective-C

Tcl

  • elmer - compile and run python code from Tcl, as if it was written in Tcl

  • TclPython - A package for Tcl that allows you to pass strings of Python code from a Tcl environment to a Python (Python 2.x or 3.x) interpreter.

  • Tcl and other languages - Tcl's equivalent of this page.

Lua

  • LunaticPython - a two-way bridge between Python and Lua.

  • Lupa - fast wrapper for LuaJIT2 written in Cython.

  • Lux - a mutant Lua emphasizing interoperation with Python, Perl, etc.

OCaml

  • Pycaml - write Python extension modules in OCaml (instead of C), and use Python code and native libraries from OCaml programs.

Eiffel and Haskell

Other (applications)

to name a few. There are much more...

Other (standards and protocols)

See also

Thinki: UsingPythonWithOtherLanguages

IntegratingPythonWithOtherLanguages (last edited 2020-07-29 18:06:27 by JaraKaca)

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