Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dilawar/cython-example
A small example of cython
https://github.com/dilawar/cython-example
Last synced: about 2 months ago
JSON representation
A small example of cython
- Host: GitHub
- URL: https://github.com/dilawar/cython-example
- Owner: dilawar
- Created: 2014-07-10T10:53:54.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-07-10T11:00:50.000Z (over 10 years ago)
- Last Synced: 2023-03-22T15:28:29.176Z (almost 2 years ago)
- Language: C++
- Size: 156 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
cython-example
==============A small example of cython
Two classes are written in C++: `class A` is in `A.h` and `class B` is in `B.h`.
Class B has a member of type A.This folder contains `pxd` files for both class A and B, and a wrapper file
`ab.pyx`. Python file `setup.py` can be reused with minimal changes.This is not intended for beginners.