资 源 简 介
Ironclad aims, in the long term, to allow IronPython users to transparently import and use any compiled CPython extensions. Ironclad works with IronPython 2.6 and targets CPython 2.6 on 32-bit Windows; efforts to support other platforms are underway.
Quick Start
Download the latest binary package
Unzip it into C:
cd to C:ironclad-v2.6.0rc1-bin
run ipy
import ironclad
If the above steps pass without error, you are ready to import CPython extensions. Assuming you have a CPython 2.6 install located at C:Python26, add the following locations to your sys.path:
C:Python26Dlls
C:Python26Lib
C:Python26Libsite-packages
...and you should be able to import and use many of the extensions in your CPython install.
impo