https://github.com/giorgi94/py_travel_cpp
practical exampels of python c/c++ extensions
https://github.com/giorgi94/py_travel_cpp
cpp extensions python3
Last synced: about 1 month ago
JSON representation
practical exampels of python c/c++ extensions
- Host: GitHub
- URL: https://github.com/giorgi94/py_travel_cpp
- Owner: giorgi94
- Created: 2019-07-14T09:53:12.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-12-17T08:44:13.000Z (over 6 years ago)
- Last Synced: 2025-05-06T08:58:20.841Z (about 1 year ago)
- Topics: cpp, extensions, python3
- Language: C++
- Size: 8.79 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Py_Travel_CPP
`Py_Travel_CPP` is an example of how `c/c++` extensions can be created for performance optimizations in `python3`.
## Resources
- [Build value](https://docs.python.org/2.0/ext/buildValue.html)
- [Create list](https://docs.python.org/2.0/api/refcountDetails.html)
## Remark
To use `Python.h` header file, you will need to add path to `.bashrc`
```
export CPLUS_INCLUDE_PATH=/usr/include/python3.6
```