How can I import a .PYD module in IronPython?

孤街醉人 提交于 2019-11-28 06:14:27

问题


I'm trying to use a python package from IronPython. Everything works fine if I import regular python modules.

But when I try to do the following:

import win32ui

I get:

No module named win32ui

I've hunted through the code in IronPython.Runtime.Importer and there's no mention of .pyd

Anyone know a way around this?


回答1:


You can check out IronClad which is working to provide this support. It may or may not work w/ your PYD of choice.




回答2:


A .pyd file is a DLL. So unless IronPython (which is written in .net) can correctly load C DLLs written for CPython, you might be out of luck.


Update

In fact, according to the IronPython FAQ, you are unfortunately unable to import .pyd files:

Q: How do I build and call into PYD libraries?

A: IronPython does not support using PYDs built for CPython since they leverage implementation details of CPython. You can get a similar effect for new "PYD"s you would like to implement by writing them in C# or VB and building a DLL for .NET.



来源:https://stackoverflow.com/questions/1228613/how-can-i-import-a-pyd-module-in-ironpython

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!