unwitting / bitstampy

Bitstamp API wrapper for Python
MIT License
54 stars 21 forks source link

ImportError on Python 3.5 #6

Closed johan-bjareholt closed 8 years ago

johan-bjareholt commented 8 years ago

When trying to do 'from bistampy import api' i get 'ImportError: No module named calls'

A simple fix for this was to simply change the first line in api.py from 'import calls' to 'from . import calls'

unwitting commented 8 years ago

Nice, feel free to create a PR :) need to make sure it works fine in Python 2, still.

johan-bjareholt commented 8 years ago

Created a pr :)

https://github.com/unwitting/bitstampy/pull/7

unwitting commented 8 years ago

Cheers!