zerodha / pykiteconnect

The official Python client library for the Kite Connect trading APIs
MIT License
1.01k stars 477 forks source link

Added six for Python 3.* #6

Closed muke5hy closed 8 years ago

muke5hy commented 8 years ago

Added six for Python 3.* Added six dependency as it more elegant than


try:
    from StringIO import StringIO
except ImportError:
    from io import StringIO