Glitchii / python-c-extension

This is the practice of Python C extensions.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Python C extension

This is the practice of Python C extensions. It is Python3 that I am practicing now!

Files in each directory

  • test.py: The test codes to run the module built from the C extension files.
  • setup.py: The file for Python to build the C extension module.
  • bind.c: The Python wrapper interface for the C extension module.
  • libmypy.h: The header file of C extension module.
  • libmypy.c: The source file of C extension module.
  • Makefile: Aggregate the building scripts.

00-HelloWorld

It is a general hello world practice. One may start from here for the simplest Python C extension example.

01-HeyMan

It is a C extension practice who gets arguments passed from Python. The heyman function will echo the passed name and the number.

02-Add

It is an adding function which will not only gets arguments passed from Python, but also returns a tuple that is composite of the result and the equation string.

03-CrossVersion

It is a cross version example that shows how to port between Python 2 and Python 3.

About

This is the practice of Python C extensions.

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:C 65.1%Language:Python 19.9%Language:C++ 9.2%Language:Makefile 5.9%