├── .appveyor.yml ├── .circleci └── config.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── helloWorldCppModule ├── .gitignore ├── __build.py ├── __init__.py └── __src │ ├── hello.cpp │ ├── hello.h │ ├── module.cpp │ └── wrappers.py ├── helloWorldModule ├── .gitignore ├── __init__.py └── __src │ ├── hello.c │ ├── hello.h │ ├── module.c │ └── wrappers.py ├── helloWorldRustModule ├── .gitignore ├── __init__.py └── __src │ ├── Cargo.toml │ ├── src │ └── lib.rs │ └── wrappers.py ├── requirements.txt ├── test.py ├── testCpp.py └── testRust.py /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/README.md -------------------------------------------------------------------------------- /helloWorldCppModule/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/helloWorldCppModule/.gitignore -------------------------------------------------------------------------------- /helloWorldCppModule/__build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/helloWorldCppModule/__build.py -------------------------------------------------------------------------------- /helloWorldCppModule/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/helloWorldCppModule/__init__.py -------------------------------------------------------------------------------- /helloWorldCppModule/__src/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/helloWorldCppModule/__src/hello.cpp -------------------------------------------------------------------------------- /helloWorldCppModule/__src/hello.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/helloWorldCppModule/__src/hello.h -------------------------------------------------------------------------------- /helloWorldCppModule/__src/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/helloWorldCppModule/__src/module.cpp -------------------------------------------------------------------------------- /helloWorldCppModule/__src/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/helloWorldCppModule/__src/wrappers.py -------------------------------------------------------------------------------- /helloWorldModule/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/helloWorldModule/.gitignore -------------------------------------------------------------------------------- /helloWorldModule/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/helloWorldModule/__init__.py -------------------------------------------------------------------------------- /helloWorldModule/__src/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/helloWorldModule/__src/hello.c -------------------------------------------------------------------------------- /helloWorldModule/__src/hello.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/helloWorldModule/__src/hello.h -------------------------------------------------------------------------------- /helloWorldModule/__src/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/helloWorldModule/__src/module.c -------------------------------------------------------------------------------- /helloWorldModule/__src/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/helloWorldModule/__src/wrappers.py -------------------------------------------------------------------------------- /helloWorldRustModule/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/helloWorldRustModule/.gitignore -------------------------------------------------------------------------------- /helloWorldRustModule/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/helloWorldRustModule/__init__.py -------------------------------------------------------------------------------- /helloWorldRustModule/__src/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/helloWorldRustModule/__src/Cargo.toml -------------------------------------------------------------------------------- /helloWorldRustModule/__src/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/helloWorldRustModule/__src/src/lib.rs -------------------------------------------------------------------------------- /helloWorldRustModule/__src/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/helloWorldRustModule/__src/wrappers.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/test.py -------------------------------------------------------------------------------- /testCpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/testCpp.py -------------------------------------------------------------------------------- /testRust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finomnis/PythonCModule/HEAD/testRust.py --------------------------------------------------------------------------------