133 lines
5.2 KiB
HTML
133 lines
5.2 KiB
HTML
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
|
|
<title>Boost.Python</title>
|
|
<link rel="stylesheet" href="boostbook.css" type="text/css">
|
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
|
<link rel="home" href="index.html" title="Boost.Python">
|
|
<link rel="next" href="building.html" title="Chapter 1. Building and Testing">
|
|
</head>
|
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
|
<table cellpadding="2" width="100%"><tr><td valign="top"><img alt="" width="" height="" src="images/boost.png"></td></tr></table>
|
|
<hr>
|
|
<div class="spirit-nav"><a accesskey="n" href="building.html"><img src="images/next.png" alt="Next"></a></div>
|
|
<div class="book">
|
|
<div class="titlepage">
|
|
<div>
|
|
<div><h1 class="title">
|
|
<a name="python"></a>Boost.Python</h1></div>
|
|
<div><div class="authorgroup">
|
|
<div class="author"><h3 class="author">
|
|
<span class="firstname">David</span> <span class="surname">Abrahams</span>
|
|
</h3></div>
|
|
<div class="author"><h3 class="author">
|
|
<span class="firstname">Stefan</span> <span class="surname">Seefeld</span>
|
|
</h3></div>
|
|
</div></div>
|
|
<div><p class="copyright">Copyright © 2002-2015 David
|
|
Abrahams, Stefan Seefeld</p></div>
|
|
<div><div class="legalnotice">
|
|
<a name="python.legal"></a><p>
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
|
|
</p>
|
|
</div></div>
|
|
</div>
|
|
<hr>
|
|
</div>
|
|
<h3>
|
|
<a name="python.h0"></a>
|
|
<span class="phrase"><a name="python.synopsis"></a></span><a class="link" href="index.html#python.synopsis">Synopsis</a>
|
|
</h3>
|
|
<p>
|
|
Welcome to Boost.Python, a C++ library which enables seamless interoperability
|
|
between C++ and the Python programming language. The library includes support
|
|
for:
|
|
</p>
|
|
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
|
|
<li class="listitem">
|
|
References and Pointers
|
|
</li>
|
|
<li class="listitem">
|
|
Globally Registered Type Coercions
|
|
</li>
|
|
<li class="listitem">
|
|
Automatic Cross-Module Type Conversions
|
|
</li>
|
|
<li class="listitem">
|
|
Efficient Function Overloading
|
|
</li>
|
|
<li class="listitem">
|
|
C++ to Python Exception Translation
|
|
</li>
|
|
<li class="listitem">
|
|
Default Arguments
|
|
</li>
|
|
<li class="listitem">
|
|
Keyword Arguments
|
|
</li>
|
|
<li class="listitem">
|
|
Manipulating Python objects in C++
|
|
</li>
|
|
<li class="listitem">
|
|
Exporting C++ Iterators as Python Iterators
|
|
</li>
|
|
<li class="listitem">
|
|
Documentation Strings
|
|
</li>
|
|
</ul></div>
|
|
<p>
|
|
The development of these features was funded in part by grants to <code class="computeroutput"><span class="identifier">Boost</span> <span class="identifier">Consulting</span></code>
|
|
from the <a href="http://www.llnl.gov" target="_top">Lawrence Livermore National Laboratories</a>
|
|
and by the <a href="http://cci.lbl.gov" target="_top">Computational Crystallography Initiative</a>
|
|
at Lawrence Berkeley National Laboratories.
|
|
</p>
|
|
<div class="section">
|
|
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
|
|
<a name="python.contents"></a><a class="link" href="index.html#python.contents" title="Contents">Contents</a>
|
|
</h2></div></div></div>
|
|
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
|
|
<li class="listitem">
|
|
<a href="tutorial/index.html" target="_top">Tutorial</a>
|
|
</li>
|
|
<li class="listitem">
|
|
<a class="link" href="building.html" title="Chapter 1. Building and Testing">Building and Testing</a>
|
|
</li>
|
|
<li class="listitem">
|
|
<a href="reference/index.html" target="_top">Reference Manual</a>
|
|
</li>
|
|
<li class="listitem">
|
|
<a class="link" href="configuration.html" title="Chapter 2. Configuration">Configuration Information</a>
|
|
</li>
|
|
<li class="listitem">
|
|
<a class="link" href="glossary.html" title="Chapter 5. Glossary">Glossary</a>
|
|
</li>
|
|
<li class="listitem">
|
|
<a class="link" href="support.html" title="Chapter 3. Support Resources">Support Resources</a>
|
|
</li>
|
|
<li class="listitem">
|
|
<a class="link" href="faq.html" title="Chapter 4. Frequently Asked Questions (FAQs)">Frequently Asked Questions (FAQs)</a>
|
|
</li>
|
|
<li class="listitem">
|
|
<a href="numpy/index.html" target="_top">NumPy Extension Documentation</a>
|
|
</li>
|
|
</ul></div>
|
|
</div>
|
|
<h3>
|
|
<a name="python.h1"></a>
|
|
<span class="phrase"><a name="python.articles"></a></span><a class="link" href="index.html#python.articles">Articles</a>
|
|
</h3>
|
|
<p>
|
|
<a href="article.html" target="_top">Building Hybrid Systems With Boost Python</a>,
|
|
by Dave Abrahams and Ralf W. Grosse-Kunstleve
|
|
</p>
|
|
</div>
|
|
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
|
<td align="left"><p><small>Last revised: December 14, 2017 at 00:12:19 GMT</small></p></td>
|
|
<td align="right"><div class="copyright-footer"></div></td>
|
|
</tr></table>
|
|
<hr>
|
|
<div class="spirit-nav"><a accesskey="n" href="building.html"><img src="images/next.png" alt="Next"></a></div>
|
|
</body>
|
|
</html>
|