An open API service indexing awesome lists of open source software.

https://github.com/zvyn/cmoduleforpython

Collection of Python-Modules written in C/C++.
https://github.com/zvyn/cmoduleforpython

Last synced: about 1 year ago
JSON representation

Collection of Python-Modules written in C/C++.

Awesome Lists containing this project

README

          

Extending Python with C or C++
==============================

This is a collection of Python-Modules written in C/C++. Currently it is just a
reminder for looking up the syntax. Note that there is an Iterator for
PySequences in the algorithm-folder, which is very useful when you want to use
functions from the C++-Standard-Library.

spammodule
----------

This is just a implementation of the Tutorial from the Python-Documentation:
[http://docs.python.org/3.3/extending/extending.html](Extending Python with C/C++).

algorithm
---------

Example for using the std::binary_search on Python-Objects. See the README.md
inside this folder for more information.