- Cython
- Pyarmor
- Custom pip package
- Python examples
- Intel Realsense Depth Camera
- Skeletal Tracking
- The
setup.pyfile allows you to cythonize a python script.pyxand build an.sofile without the need for type definitions!
# ensure cython is installed
pip install cython
# setup.py
from distutils.core import setup
from Cython.Build import cythonize
setup(ext_modules = cythonize('helloworld.pyx'))
# Build by executing:
python setup.py build_ext --inplace- basic cythonized helloword
- compares runtime between a python script and cythonized python script