2016-03-01 14:41:02 +00:00
|
|
|
![pybind11 logo](https://github.com/pybind/pybind11/raw/master/docs/pybind11-logo.png)
|
2015-08-04 11:59:51 +00:00
|
|
|
|
|
|
|
# pybind11 — Seamless operability between C++11 and Python
|
2015-07-05 18:05:44 +00:00
|
|
|
|
2016-12-12 22:24:21 +00:00
|
|
|
[![Documentation Status](https://readthedocs.org/projects/pybind11/badge/?version=master)](http://pybind11.readthedocs.org/en/master/?badge=master)
|
|
|
|
[![Documentation Status](https://readthedocs.org/projects/pybind11/badge/?version=stable)](http://pybind11.readthedocs.org/en/stable/?badge=stable)
|
2016-12-29 18:15:17 +00:00
|
|
|
[![Gitter chat](https://img.shields.io/gitter/room/gitterHQ/gitter.svg)](https://gitter.im/pybind/Lobby)
|
2020-07-26 17:50:31 +00:00
|
|
|
[![CI](https://github.com/pybind/pybind11/workflows/CI/badge.svg)](https://github.com/pybind/pybind11/actions)
|
2016-03-06 12:37:22 +00:00
|
|
|
[![Build status](https://ci.appveyor.com/api/projects/status/riaj54pn4h08xy40?svg=true)](https://ci.appveyor.com/project/wjakob/pybind11)
|
2015-10-11 14:29:35 +00:00
|
|
|
|
2020-08-20 19:42:07 +00:00
|
|
|
**pybind11** is a lightweight header-only library that exposes C++ types in
|
|
|
|
Python and vice versa, mainly to create Python bindings of existing C++ code.
|
|
|
|
Its goals and syntax are similar to the excellent [Boost.Python][] library by
|
|
|
|
David Abrahams: to minimize boilerplate code in traditional extension modules
|
|
|
|
by inferring type information using compile-time introspection.
|
2015-07-05 18:05:44 +00:00
|
|
|
|
|
|
|
The main issue with Boost.Python—and the reason for creating such a similar
|
|
|
|
project—is Boost. Boost is an enormously large and complex suite of utility
|
|
|
|
libraries that works with almost every C++ compiler in existence. This
|
|
|
|
compatibility has its cost: arcane template tricks and workarounds are
|
|
|
|
necessary to support the oldest and buggiest of compiler specimens. Now that
|
|
|
|
C++11-compatible compilers are widely available, this heavy machinery has
|
|
|
|
become an excessively large and unnecessary dependency.
|
|
|
|
|
|
|
|
Think of this library as a tiny self-contained version of Boost.Python with
|
2016-01-17 21:36:41 +00:00
|
|
|
everything stripped away that isn't relevant for binding generation. Without
|
2016-12-26 12:26:17 +00:00
|
|
|
comments, the core header files only require ~4K lines of code and depend on
|
2020-08-20 19:42:07 +00:00
|
|
|
Python (2.7 or 3.5+, or PyPy) and the C++ standard library. This compact
|
|
|
|
implementation was possible thanks to some of the new C++11 language features
|
|
|
|
(specifically: tuples, lambda functions and variadic templates). Since its
|
|
|
|
creation, this library has grown beyond Boost.Python in many ways, leading to
|
|
|
|
dramatically simpler binding code in many common situations.
|
2015-10-13 00:57:16 +00:00
|
|
|
|
|
|
|
Tutorial and reference documentation is provided at
|
2020-08-20 19:42:07 +00:00
|
|
|
[pybind11.readthedocs.org][]. A PDF version of the manual is available
|
|
|
|
[here][docs-pdf].
|
2015-07-05 18:05:44 +00:00
|
|
|
|
|
|
|
## Core features
|
2020-08-20 19:42:07 +00:00
|
|
|
pybind11 can map the following core C++ features to Python:
|
2015-07-05 18:05:44 +00:00
|
|
|
|
|
|
|
- Functions accepting and returning custom data structures per value, reference, or pointer
|
|
|
|
- Instance methods and static methods
|
|
|
|
- Overloaded functions
|
|
|
|
- Instance attributes and static attributes
|
2016-07-11 21:39:39 +00:00
|
|
|
- Arbitrary exception types
|
2015-07-05 18:05:44 +00:00
|
|
|
- Enumerations
|
|
|
|
- Callbacks
|
2016-09-11 11:00:40 +00:00
|
|
|
- Iterators and ranges
|
2015-07-05 18:05:44 +00:00
|
|
|
- Custom operators
|
2016-09-11 11:00:40 +00:00
|
|
|
- Single and multiple inheritance
|
2015-07-05 18:05:44 +00:00
|
|
|
- STL data structures
|
2020-08-20 19:42:07 +00:00
|
|
|
- Smart pointers with reference counting like `std::shared_ptr`
|
2015-07-05 18:05:44 +00:00
|
|
|
- Internal references with correct reference counting
|
2015-10-01 14:46:03 +00:00
|
|
|
- C++ classes with virtual (and pure virtual) methods can be extended in Python
|
2015-07-05 18:05:44 +00:00
|
|
|
|
|
|
|
## Goodies
|
|
|
|
In addition to the core functionality, pybind11 provides some extra goodies:
|
|
|
|
|
2020-08-20 19:42:07 +00:00
|
|
|
- Python 2.7, 3.5+, and PyPy (tested on 7.3) are supported with an implementation-agnostic
|
|
|
|
interface.
|
2015-10-13 00:57:16 +00:00
|
|
|
|
|
|
|
- It is possible to bind C++11 lambda functions with captured variables. The
|
|
|
|
lambda capture data is stored inside the resulting Python function object.
|
|
|
|
|
2016-12-16 14:00:46 +00:00
|
|
|
- pybind11 uses C++11 move constructors and move assignment operators whenever
|
|
|
|
possible to efficiently transfer custom data types.
|
|
|
|
|
2015-07-05 18:05:44 +00:00
|
|
|
- It's easy to expose the internal storage of custom data types through
|
|
|
|
Pythons' buffer protocols. This is handy e.g. for fast conversion between
|
|
|
|
C++ matrix classes like Eigen and NumPy without expensive copy operations.
|
|
|
|
|
2015-07-26 14:33:49 +00:00
|
|
|
- pybind11 can automatically vectorize functions so that they are transparently
|
|
|
|
applied to all entries of one or more NumPy array arguments.
|
|
|
|
|
2015-07-05 18:05:44 +00:00
|
|
|
- Python's slice-based access and assignment operations can be supported with
|
|
|
|
just a few lines of code.
|
|
|
|
|
2015-12-04 22:51:42 +00:00
|
|
|
- Everything is contained in just a few header files; there is no need to link
|
2015-10-18 12:48:24 +00:00
|
|
|
against any additional libraries.
|
2015-12-05 13:41:25 +00:00
|
|
|
|
2016-08-19 07:32:58 +00:00
|
|
|
- Binaries are generally smaller by a factor of at least 2 compared to
|
|
|
|
equivalent bindings generated by Boost.Python. A recent pybind11 conversion
|
2016-09-21 17:30:23 +00:00
|
|
|
of PyRosetta, an enormous Boost.Python binding project,
|
2020-08-20 19:42:07 +00:00
|
|
|
[reported][pyrosetta-report] a binary size reduction of **5.4x** and compile
|
|
|
|
time reduction by **5.8x**.
|
2016-01-17 21:36:36 +00:00
|
|
|
|
2020-08-20 19:42:07 +00:00
|
|
|
- Function signatures are precomputed at compile time (using `constexpr`),
|
2017-07-02 10:52:00 +00:00
|
|
|
leading to smaller binaries.
|
2016-01-17 21:36:36 +00:00
|
|
|
|
2016-04-13 21:33:00 +00:00
|
|
|
- With little extra effort, C++ types can be pickled and unpickled similar to
|
|
|
|
regular Python objects.
|
|
|
|
|
2016-02-20 20:00:45 +00:00
|
|
|
## Supported compilers
|
|
|
|
|
2017-03-14 14:38:22 +00:00
|
|
|
1. Clang/LLVM 3.3 or newer (for Apple Xcode's clang, this is 5.0.0 or newer)
|
2016-12-28 11:10:11 +00:00
|
|
|
2. GCC 4.8 or newer
|
2017-03-14 14:38:22 +00:00
|
|
|
3. Microsoft Visual Studio 2015 Update 3 or newer
|
2020-08-20 19:42:07 +00:00
|
|
|
4. Intel C++ compiler 17 or newer (16 with pybind11 v2.0 and 15 with pybind11
|
|
|
|
v2.0 and a [workaround][intel-15-workaround])
|
2016-06-02 18:31:17 +00:00
|
|
|
5. Cygwin/GCC (tested on 2.5.1)
|
2016-02-20 20:00:45 +00:00
|
|
|
|
2016-03-01 11:45:08 +00:00
|
|
|
## About
|
|
|
|
|
2016-12-16 14:00:46 +00:00
|
|
|
This project was created by [Wenzel Jakob](http://rgl.epfl.ch/people/wjakob).
|
2016-03-01 11:45:08 +00:00
|
|
|
Significant features and/or improvements to the code were contributed by
|
|
|
|
Jonas Adler,
|
2019-06-12 19:10:37 +00:00
|
|
|
Lori A. Burns,
|
2016-03-01 11:45:08 +00:00
|
|
|
Sylvain Corlay,
|
2016-09-27 16:02:20 +00:00
|
|
|
Trent Houliston,
|
2016-03-01 11:45:08 +00:00
|
|
|
Axel Huebl,
|
2016-03-08 18:40:32 +00:00
|
|
|
@hulucc,
|
2016-05-15 18:50:38 +00:00
|
|
|
Sergey Lyskov
|
2016-03-06 12:37:22 +00:00
|
|
|
Johan Mabille,
|
2016-05-29 10:37:11 +00:00
|
|
|
Tomasz Miąsko,
|
|
|
|
Dean Moldovan,
|
2016-07-12 14:58:55 +00:00
|
|
|
Ben Pritchard,
|
2016-08-11 22:58:49 +00:00
|
|
|
Jason Rhinelander,
|
2016-08-13 20:17:26 +00:00
|
|
|
Boris Schäling,
|
2017-03-14 01:51:09 +00:00
|
|
|
Pim Schellart,
|
2019-06-12 19:10:37 +00:00
|
|
|
Henry Schreiner,
|
2017-03-14 01:51:09 +00:00
|
|
|
Ivan Smirnov, and
|
|
|
|
Patrick Stewart.
|
2016-03-01 11:45:08 +00:00
|
|
|
|
2020-08-20 19:42:07 +00:00
|
|
|
### Contributing
|
|
|
|
|
|
|
|
See the [contributing guide][] for information on building and contributing to
|
|
|
|
pybind11.
|
|
|
|
|
|
|
|
|
2015-12-05 13:41:25 +00:00
|
|
|
### License
|
|
|
|
|
|
|
|
pybind11 is provided under a BSD-style license that can be found in the
|
2020-08-20 19:42:07 +00:00
|
|
|
[`LICENSE`][] file. By using, distributing, or contributing to this project,
|
2015-12-05 13:41:25 +00:00
|
|
|
you agree to the terms and conditions of this license.
|
2020-08-20 19:42:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
[pybind11.readthedocs.org]: http://pybind11.readthedocs.org/en/master
|
|
|
|
[docs-pdf]: https://media.readthedocs.org/pdf/pybind11/master/pybind11.pdf
|
|
|
|
[Boost.Python]: http://www.boost.org/doc/libs/1_58_0/libs/python/doc/
|
|
|
|
[pyrosetta-report]: http://graylab.jhu.edu/RosettaCon2016/PyRosetta-4.pdf
|
2020-08-31 14:01:08 +00:00
|
|
|
[contributing guide]: https://github.com/pybind/pybind11/blob/master/.github/CONTRIBUTING.md
|
2020-08-20 19:42:07 +00:00
|
|
|
[`LICENSE`]: https://github.com/pybind/pybind11/blob/master/LICENSE
|
|
|
|
[intel-15-workaround]: https://github.com/pybind/pybind11/issues/276
|