Tagged Questions
1
vote
0answers
94 views
How can I import library in IronPython?
I'm currently working on an application written in C#, which I'm embedding IronPython in.
I want to import library music21
This library is working normally on PyScripter, but on IronPython is not. I ...
1
vote
1answer
25 views
Could anyone tell me the method that import *** which *** is a variable in Ironpython?
I would like to import another script file inside a script file which both are in Ironpython.
For example:
`filename = "C:\test.py"
import filename`
And I got an error said:
...
0
votes
2answers
47 views
Python: Include / copy in lines from other script?
Consider y.py:
def f():
x = 1
y = 2
And x.py:
from y import f
f()
a = x + 1
b = y + 1
Obviously x.py won't work, since y.f() is not returning anything. So how do I handle the ...
0
votes
1answer
306 views
Import module in IronPython 2.7.1 very slow
(first question on StackOverflow, glad to be there :))
I am using IronPython 2.7.1 and C# .net 4.0.
I use C# to launch my python script.
I have about 20 personal modules that are imported a lots of ...
4
votes
2answers
825 views
Running Python via Microsoft.Scripting & IronPython
I am able to create Python scripts and dynamically run them via Visual Studio / .NET 4.0 like this:
# testScript.py file:
import sys
sys.path.append(r'C:\Program Files (x86)\IronPython 2.7.1\Lib')
...
0
votes
1answer
83 views
IronPython Static Program Class Visibility
I'm new to IronPython but have been using Python for many years. I inherited some C# applications and would like to access some of their classes via Python. Given the following C#:
namespace Updater ...
5
votes
1answer
215 views
What happens when import a module in ironpython?
In CPython, I think, import means compile the py file to a pyc file and execute the file in the current frame, and the next time CPython will load the pyc file directly without compiling again. What ...
3
votes
3answers
154 views
Explaining Python's site-packages. Do I put my libraries in there?
I recently came upon a new project with Python as the code-base. I have never done Python before - coming from the C/C++ world of compiled code. I am running into some issues understanding my current ...
0
votes
1answer
59 views
Is there a way to load python scripts from a zipfile in ironpython
I want to have extensions to my application written in IronPython. Part of those extensions will use decorators, and so I wish to include the decorator module in the package.
The issue is that the ...
2
votes
1answer
264 views
How can IronPython access a public static property defined in C#?
Consider this C# code:
public static class Graphics {
public static Color white = new Color(255, 255, 255);
}
I can compile and import this from IronPython:
>>> import clr
>>> ...
4
votes
1answer
943 views
IronPython: import random fails in IronPython Interactive
This fails in IronPython Interactive inside Visual Studio 2010:
ยป import random
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named ...
1
vote
1answer
158 views
IronPython: Cannot import 'Rect'-struct from System.Windows
When I try to import the 'Rect'-struct from System.Windows, IronPython-Interpreter claims that it cannot import.
Since I am using the IronPython Tools for Visual Studio, i can also see that the ...
0
votes
1answer
341 views
Having trouble importing C# interface into Python
I've been doing a bunch of searching and reading today, and haven't figured out the right way to implement something, or even determining if it's possible.
Here's the gist of what I'm attempting ...
5
votes
4answers
1k views
Custom IronPython import resolution
I am loading an IronPython script from a database and executing it. This works fine for simple scripts, but imports are a problem. How can I intercept these import calls and then load the ...
1
vote
2answers
2k views
IronPython cannot import module os
So I have a basic ZIPPED IronPython (2.6 or 2.6.1) that I just unzip, start ipy.exe, type "import os" and hit enter.
The following output happens:
Traceback (most recent call last):
File ...
0
votes
2answers
162 views
IronPython disable Import after use
Is there any way to disable the use of import once I've finished using it? I'm using IronPython as a scripting engine and I don't want users to be able to import anything. This could be done in ...
2
votes
2answers
6k views
Importing external module in IronPython
I'm currently working on an application written in C#, which I'm embedding IronPython in. I generally have no problems about it, but there's one thing that I don't know how to deal with.
I want to ...
1
vote
2answers
1k views
How can I import a .PYD module in IronPython?
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
...
5
votes
2answers
1k views
IronPython “LookupError: unknown encoding: hex”
When I try to "import simplejson" (or something that depends on it) in IronPython 2.0, I get "LookupError: unknown encoding: hex". How do I make this work?
