Size: 2554
Comment:
|
Size: 2578
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
The Boost Python Library allows the use of C/C++ from Python. It is part of the larger boost package (http://www.boost.org). | The Boost.Python Library binds C++ and Python in a mostly-seamless fashion. It is just one member of the boost C++ library collection at http://www.boost.org. |
Line 3: | Line 3: |
Use the Boost Python Library to quickly and easily export a C++ library to Python such that the Python interface is very similar to the C++ interface. It is designed to be minimally intrusive on your C++ design. In most cases, you should not have to alter your C++ classes in any way in order to use them with Boost.Python. The system should simply ''reflect'' your C++ classes and functions into Python. | Use the Boost Python Library to quickly and easily export C++ to Python such that the Python interface is very similar to the C++ interface. It is designed to be minimally intrusive on your C++ design. In most cases, you should not have to alter your C++ classes in any way in order to use them with Boost.Python. The system should simply ''reflect'' your C++ classes and functions into Python. Boost.Python bindings are written in pure C++, using no tools other than your editor and your C++ compiler. |
Line 5: | Line 5: |
A summary of the development goals is available on the Python [http://www.python.org/sigs/c++-sig/ C++-sig] page, which also serves as a mailing list for users of both versions of the library. A preview of the v2 documentation is available [http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/*checkout*/boost/boost/libs/python/doc/v2/index.html?rev=HEAD&content-type=text/html here], and instructions for getting started with a prerelease are available upon request. | The Python [http://www.python.org/sigs/c++-sig/ C++-sig] serves as a mailing list for users of the library. Documentation for the current release is available on http://www.boost.org/libs/python/doc/index.html. Development documentation, which is usually more up-to-date, is available at http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/*checkout*/boost/boost/libs/python/doc/index.html |
Line 7: | Line 7: |
More on http://www.boost.org/libs/python/doc/index.html While v2 is being developed, this page seems like a good place to assemble v2 intro and tutorial. |
This page serves as a forum to gather peoples' experience and as a cookbook, as it is more dynamic by nature and open to contributors. |
Line 13: | Line 12: |
* ["boost.python/module"] | * ["boost.python/module"] level: def,scope |
Line 42: | Line 41: |
* mpl - currently in prerelease | * mpl |
The Boost.Python Library binds C++ and Python in a mostly-seamless fashion. It is just one member of the boost C++ library collection at http://www.boost.org.
Use the Boost Python Library to quickly and easily export C++ to Python such that the Python interface is very similar to the C++ interface. It is designed to be minimally intrusive on your C++ design. In most cases, you should not have to alter your C++ classes in any way in order to use them with Boost.Python. The system should simply reflect your C++ classes and functions into Python. Boost.Python bindings are written in pure C++, using no tools other than your editor and your C++ compiler.
The Python [http://www.python.org/sigs/c++-sig/ C++-sig] serves as a mailing list for users of the library. Documentation for the current release is available on http://www.boost.org/libs/python/doc/index.html. Development documentation, which is usually more up-to-date, is available at http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/*checkout*/boost/boost/libs/python/doc/index.html
This page serves as a forum to gather peoples' experience and as a cookbook, as it is more dynamic by nature and open to contributors.
Various items:
- ["boost.python/FAQ"]
- ["boost.python/module"] level: def,scope
- ["boost.python/class"]
- ["boost.python/extract"]
- ["boost.python/object"]
- ["boost.python/list"]
- ["boost.python/iterator"]
Tutorial:
- boost.python/SimpleExample
- boost.python/ExportingClasses
- boost.python/OverridableVirtualFunctions
- boost.python/FunctionOverloading
- ["boost.python/Inheritance"]
- boost.python/SpecialMethod
- boost.python/PeekUnderTheHood
- boost.python/CrossExtensionModuleDependencies
- boost.python/WrappingEnums
- boost.python/PointersAndSmartPointers
- boost.python/InternalDataStructures
From David Abrahams:
Boost.Python is designed with the idea in mind that users never touch a PyObject*.
Boost.Python depends on quite a few of the other boost libraries (possibly a few others):
- type_traits
- bind
- function
- mpl
- smart_ptr
IIUC, ["weave"] can be used for embedding nontrivial C++ code, if you're willing to stick it all inside one function body. Furthermore, tools like weave.blitz() can make an enormous difference by compiling an entire C++ expression template corresponding to an arbitrarily complicated Python expression. Surely that's nontrivial. It's definitely cool. I think weave offers enormous power to the person who's programming mostly in Python.