{ "info": { "author": "Fernando Trias", "author_email": "sub@trias.org", "bugtrack_url": null, "classifiers": [], "description": "Python module for embedding C/C++ code within Python code. It is designed to allow coders to easily speed up slow code by replacing small portions of Python with compiled C/C++ that can transparently read and modify Python variables. Keeping all the code in the same source file simplifies development and improves code readability. All the compiling and linking is done dynamically by the module to further simplify development.\r\n\r\n* Embed C/C++ within Python source code\r\n* Automatically compile and dynamically link using GCC\r\n* Access and modify Python variables as C variables\r\n* Support arrays and strings\r\n* Use ctypes for maximum portability\r\n\r\nSimple Example:\r\n\r\nfrom embedc import C\r\na=[1,4,9]\r\nalen=len(a)\r\nC(\"\"\"\r\n for (int i=0; i