Results 4 comments of snb2013

I tried both methods. ``` print('PYTHONIOENCODING=%s' % os.environ.get('PYTHONIOENCODING')) print(str(p.getTimeSeries("USDAM3L1Y="), 'utf-8')) ``` Output is: ``` PYTHONIOENCODING=utf-8 Traceback (most recent call last): File "/home/sergey-ubuntu/git/pyrfa-master/examples/timeseries.py", line 13, in print(str(p.getTimeSeries("USDAM3L1Y="), 'utf-8')) UnicodeDecodeError: 'utf-8' codec...

It doesn't help. ((( ``` print('PYTHONIOENCODING=%s' % os.environ.get('PYTHONIOENCODING')) print('LC_ALL=%s' % os.environ.get('LC_ALL')) print('LANG=%s' % os.environ.get('LANG')) ts = p.getTimeSeries("USDAM3L1Y=") for record in ts: print(record) ``` ``` PYTHONIOENCODING=utf-8 LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 Traceback (most recent...

I've sent the log. Normal subscription is OK. ``` p.marketPriceRequest("USDAM3L1Y=") end = False while not end: try: for data in p.dispatchEventQueue(10): print(data) except KeyboardInterrupt: end = True exit(0) ``` No...