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

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

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
```