Skip to main content

All Questions

Tagged with
0 votes
1 answer
258 views

How to debug IronPython embadded in asp.net core 2.1 project

I embedded a python script in an asp.net core 2.1 project with IronPython. My python script foo.py: class Calculator: def add(self, argA, argB): return argA+argB My C# method to call foo....
smaica's user avatar
  • 817
3 votes
1 answer
1k views

Display output from python in aspx page

Question from a .net newbie Hello, I am trying to display output from my python code in aspx page. Below is .net c# code that executes by the click of Button1. protected void Button1_Click1(object ...
P Raju's user avatar
  • 339
1 vote
1 answer
2k views

How to Import 3rd party Python Library on IronPython Library in ASP.net

I have a function that executes a python script. The python script calls the jira library to connect to it's server. Then it will return data and will create an excel file for it. The python script ...
Dave's user avatar
  • 205
2 votes
1 answer
2k views

Issue calling a python script from an iron python script (which is called from c# script engine)

I'm calling an iron python script from c# using ScriptRuntimeSetup setup = Python.CreateRuntimeSetup(null); ScriptRuntime runtime = new ScriptRuntime(setup); ScriptEngine ...
Jack Dalton's user avatar
  • 3,691
1 vote
0 answers
212 views

Calling IronPython usercontrol method from ASP.NET page

Im trying to call a method from an ascx user control in IronPython code from a C# aspx asp.net page. When I do a C# page to C# usercontrol method call I have no problem, the same when I do an ...
Pablo's user avatar
  • 5,103
0 votes
2 answers
2k views

IronPython integration with C#/ .NET

So I'm trying to develop this application that will get a captcha image from an website and try to decode it so I can fill the captcha input text with the resulted text after I decode the picture. I ...
davvidd's user avatar
  • 73
0 votes
1 answer
130 views

translating line of code from C# to IronPython

I need to convert this line of code from an asp.net c# page to asp.net IronPython, how would it be? ((IPostBackEventHandler)Button1).RaisePostBackEvent(null);
Pablo's user avatar
  • 5,103
13 votes
3 answers
23k views

BeautifulSoup and ASP.NET/C#

Has anyone integrated BeautifulSoup with ASP.NET/C# (possibly using IronPython or otherwise)? Is there a BeautifulSoup alternative or a port that works nicely with ASP.NET/C# The intent of planning ...
user300981's user avatar
  • 1,433