I have C # .NET classes that exist outside of the namespace that you need to access in IronPython. Normally I would do:
import SomeNamespace from SomeNamespace import *
However, I do not have a namespace.
Import your assembly as usual, and then just import the class name:
import clr clr.AddReference("MyAssembly") import MyGlobalClass