Top "Ironpython" questions

IronPython is an open-source implementation of the Python programming language which is tightly integrated with the .NET Framework.

What's the simplest way to access mssql with python or ironpython?

I've got mssql 2005 running on my personal computer with a database I'd like to run some python scripts on. I'm …

python sql-server ironpython
How to use a C# dll in IronPython

I have created a dll using C#. How do use the dll in IronPython. I have tried to add the …

ironpython
What is a safe way to stop a running thread?

I have a thread which contains execution of an IronPython script. For some reason I may need to stop this …

c# multithreading ironpython abort
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 …

python import ironpython
Problems embedding IronPython in C# (Missing Compiler required member 'Microsoft.CSharp.RuntimeBinder.Binder.InvokeMember'

I'm trying to do a simple hello world to test out embedding IronPython within C# but can't seem to resolve …

c# python .net dynamic ironpython
How do I call a specific Method from a Python Script in C#?

I'm wondering if there is a possibility to call a specific Method from a Python script over a C# project. …

c# python methods arguments ironpython
Shuffle string c#

I want to know shuffle string Example string string word; //I want to shuffle it word = "hello" I would be …

c# algorithm ironpython
How to install numpy and scipy for Ironpython27? Old method doesn't work

I think this is the most popular way to do it before: https://pytools.codeplex.com/wikipage?title=NumPy%20and%20…

python .net numpy scipy ironpython
Docker issue: /bin/sh: pip: not found

So my dockerfile is : FROM iron/python:2.7 WORKDIR /app ADD . /app RUN pip install --upgrade pip RUN pip install -r ./…

python docker pip ironpython
GUI development with IronPython and Visual Studio 2010

I'm teaching an introductory class to programming and GUI development using Python, and have found that the least overwhelming solution …

python visual-studio-2010 user-interface ironpython