1

How do I got about installing the boto library on IronPython so that I can access Amazon web services?

Is this possible?

Simon Opelt
  • 6,136
  • 2
  • 35
  • 66
xorsyst
  • 7,897
  • 5
  • 39
  • 58

1 Answers1

1

With 2.7.5, ipy -X:Frames -m pip install boto should do the trick to install it. If boto itself doesn't work (which is pretty likely, as I don't think anyone's tried to make boto compatible with IronPython yet) then you should be able to use the AWS .NET SDK from IronPython without much difficulty.

Jeff Hardy
  • 7,632
  • 24
  • 24