python - Using .pyd library in Jython -
actually i'm start project, in company using java main technology in owr web app server (ibm webspher), need integrate existing technology new product purchased , developed in c/cpython , ofer sdk in c , implementation in cpython (.pyd file), want know if kind of libraries supported in jython actyally i'm working jython 2.7b1? or there way use these kind of libraries?
thanks , regards, serch
from jython faq...
jython programs cannot use cpython extension modules written in c. these modules have files extension .pyc, .pyd or .dll. if want use such module, should equivalent written in pure python or java.
the workaround use jni embed cpython in java, although defeat purpose of using jython.