[Ironpython-users] Question about IronPython in combination with VS

2017-11-28 Thread Arik Shavit
Hello, I am trying to use IronPython with Visual Studio 2017. I also installed Anaconda. Is it possible to thus import libraries from Anaconda in a WPF Iron Python application ? For example I want to import pandas. In the FAQ I saw that Iron Python itself probably does not support pandas. However

Re: [Ironpython-users] question

2015-08-06 Thread Markus Schaber
This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and destroy this e-mail. Any unauthorised copying, disclosure or distribution of the material in this e-ma

[Ironpython-users] question

2015-07-30 Thread Gandia Augusto
In this function: def simxWriteStringStream(clientID, signalName, signalValue, operationMode): ''' Please have a look at the function description/documentation in the V-REP user manual ''' sigV=signalValue if sys.version_info[0] == 3: if type(signalName) is str:

[Ironpython-users] question about international encodings

2013-04-12 Thread sepatan
Not be obtained from IronPython (DLR Silverlight) transfer Russian text HTTP (XMLHttpRequest POST). example: # -*- coding: utf-8 -*- import cPickle import _codecs as codecs import sys print sys.getdefaultencoding() t_ish='Привет Салют!' picl=cPickle.dumps(t_ish) un_picl=cPickle.loads(picl) print

[Ironpython-users] Question on exposing collections

2012-04-20 Thread Igor Brejc
Hi, I'm developing a C# API that will be exposed to users via IronPython. I'm a bit confused on what types of collections should the API provide through its public interface (both as input and output parameters of methods and as properties). For example, what type is most suitable for exposing li