https://github.com/c-bata/python-c-api-example
Example of Python C extension and Cython.
https://github.com/c-bata/python-c-api-example
Last synced: about 1 year ago
JSON representation
Example of Python C extension and Cython.
- Host: GitHub
- URL: https://github.com/c-bata/python-c-api-example
- Owner: c-bata
- Created: 2019-07-24T04:53:04.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-10-10T11:30:49.000Z (over 5 years ago)
- Last Synced: 2025-02-10T01:46:08.968Z (over 1 year ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# python-c-api-example
```
$ python bench.py
Python
0.269196 s/op
C Extension with gil
0.004870 s/op
C Extension with nogil
0.001258 s/op
Cython
0.000535 s/op
Mypyc
0.018971 s/op
```