|
Hi, So, I've been successfully using IronPython with the Standard Python Library, using modules such as json or urllib2. This line of code allows me to import the standard modules: #python import sys sys.path.extend(['C:\\Program Files\\IronPython 2.7\\lib', 'C:\\Program Files\\IronPython 2.7\\lib\\site-packages']) And then, I can just import the modules, and use them as normal: #python import json import urllib2 Now, it still feels pretty limited in some way. Is there a way we could also be using some external libraries, such as pandas, requests, or even fiona? Thanks a lot for your help.
|