├── .gitignore ├── LICENSE_CC_BY_40.md ├── README.md ├── converter_example ├── SConstruct └── converter.cpp ├── notes.rst ├── presentation ├── Boost.Python.ipynb ├── SConstruct ├── bp_magic.py ├── media │ ├── IPC.png │ ├── SixtyNorth_logo.png │ ├── boost_python.png │ ├── dante.jpg │ ├── embedding.png │ ├── extension_module.png │ ├── intro.png │ ├── object_to_pyobject.png │ ├── pipeline.jpg │ ├── python-logo.png │ ├── python_libpython.png │ ├── ref_count_1.png │ ├── ref_count_2.png │ └── ref_count_3.png ├── slides_config.py └── slides_template.tpl └── workshop ├── Boost.Python.workshop.ipynb ├── bp_magic.py └── media ├── IPC.png ├── SixtyNorth_logo.png ├── boost_python.png ├── dante.jpg ├── embedding.png ├── extension_module.png ├── internal_memory_reference.png ├── intro.png ├── object_to_pyobject.png ├── pipeline.jpg ├── python-logo.png ├── python_libpython.png ├── ref_count_1.png ├── ref_count_2.png └── ref_count_3.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE_CC_BY_40.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/LICENSE_CC_BY_40.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/README.md -------------------------------------------------------------------------------- /converter_example/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/converter_example/SConstruct -------------------------------------------------------------------------------- /converter_example/converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/converter_example/converter.cpp -------------------------------------------------------------------------------- /notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/notes.rst -------------------------------------------------------------------------------- /presentation/Boost.Python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/presentation/Boost.Python.ipynb -------------------------------------------------------------------------------- /presentation/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/presentation/SConstruct -------------------------------------------------------------------------------- /presentation/bp_magic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/presentation/bp_magic.py -------------------------------------------------------------------------------- /presentation/media/IPC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/presentation/media/IPC.png -------------------------------------------------------------------------------- /presentation/media/SixtyNorth_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/presentation/media/SixtyNorth_logo.png -------------------------------------------------------------------------------- /presentation/media/boost_python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/presentation/media/boost_python.png -------------------------------------------------------------------------------- /presentation/media/dante.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/presentation/media/dante.jpg -------------------------------------------------------------------------------- /presentation/media/embedding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/presentation/media/embedding.png -------------------------------------------------------------------------------- /presentation/media/extension_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/presentation/media/extension_module.png -------------------------------------------------------------------------------- /presentation/media/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/presentation/media/intro.png -------------------------------------------------------------------------------- /presentation/media/object_to_pyobject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/presentation/media/object_to_pyobject.png -------------------------------------------------------------------------------- /presentation/media/pipeline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/presentation/media/pipeline.jpg -------------------------------------------------------------------------------- /presentation/media/python-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/presentation/media/python-logo.png -------------------------------------------------------------------------------- /presentation/media/python_libpython.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/presentation/media/python_libpython.png -------------------------------------------------------------------------------- /presentation/media/ref_count_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/presentation/media/ref_count_1.png -------------------------------------------------------------------------------- /presentation/media/ref_count_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/presentation/media/ref_count_2.png -------------------------------------------------------------------------------- /presentation/media/ref_count_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/presentation/media/ref_count_3.png -------------------------------------------------------------------------------- /presentation/slides_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/presentation/slides_config.py -------------------------------------------------------------------------------- /presentation/slides_template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/presentation/slides_template.tpl -------------------------------------------------------------------------------- /workshop/Boost.Python.workshop.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/workshop/Boost.Python.workshop.ipynb -------------------------------------------------------------------------------- /workshop/bp_magic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/workshop/bp_magic.py -------------------------------------------------------------------------------- /workshop/media/IPC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/workshop/media/IPC.png -------------------------------------------------------------------------------- /workshop/media/SixtyNorth_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/workshop/media/SixtyNorth_logo.png -------------------------------------------------------------------------------- /workshop/media/boost_python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/workshop/media/boost_python.png -------------------------------------------------------------------------------- /workshop/media/dante.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/workshop/media/dante.jpg -------------------------------------------------------------------------------- /workshop/media/embedding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/workshop/media/embedding.png -------------------------------------------------------------------------------- /workshop/media/extension_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/workshop/media/extension_module.png -------------------------------------------------------------------------------- /workshop/media/internal_memory_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/workshop/media/internal_memory_reference.png -------------------------------------------------------------------------------- /workshop/media/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/workshop/media/intro.png -------------------------------------------------------------------------------- /workshop/media/object_to_pyobject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/workshop/media/object_to_pyobject.png -------------------------------------------------------------------------------- /workshop/media/pipeline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/workshop/media/pipeline.jpg -------------------------------------------------------------------------------- /workshop/media/python-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/workshop/media/python-logo.png -------------------------------------------------------------------------------- /workshop/media/python_libpython.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/workshop/media/python_libpython.png -------------------------------------------------------------------------------- /workshop/media/ref_count_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/workshop/media/ref_count_1.png -------------------------------------------------------------------------------- /workshop/media/ref_count_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/workshop/media/ref_count_2.png -------------------------------------------------------------------------------- /workshop/media/ref_count_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abingham/boost_python_tutorial/HEAD/workshop/media/ref_count_3.png --------------------------------------------------------------------------------