Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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.