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++.
- Host: GitHub
- URL: https://github.com/zvyn/cmoduleforpython
- Owner: zvyn
- Created: 2013-05-02T14:52:09.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-09-11T10:33:22.000Z (over 12 years ago)
- Last Synced: 2025-02-03T14:46:49.199Z (about 1 year ago)
- Language: C
- Homepage:
- Size: 145 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.