Kaveripakam, Sathish wrote:
> HI All,
>
> I am trying to port python code to the .NET environment using iron python.
>
> In my existing python code, I have calls to the WIn applications:
>
> import win32pipe
> import win32File
> import Win32api
Those modules are C extensions compiled for CPy
The win32 modules are Python C extension modules that provide access
to various windows api's. Currently IronPython can not use CPython C
extensions. But since IronPython has full access to .NET assemblies,
there will be calls you would be able to utilise.
Mark
On Dec 12, 2007 9:50 PM, Kaveripaka
HI All,
I am trying to port python code to the .NET environment using iron
python.
In my existing python code, I have calls to the WIn applications:
import win32pipe
import win32File
import Win32api
When I try to execute the above code, it complains "No module named
win32xxx". In my system
Hello,
Does anyone know where to specify library path for standard python
modules? In IronPython installation, there is a Lib folder which has a
file named site.py. It can be used to specify the library path. In
IronPython Studio, I could not figure out how to solve this problem.
Thank you!