Reputation: 127
I've installed the Podio API for Python 3 and found that it imports urlencode from urllib (from where you apparently would import it in Python 2), instead of urllib.parse (where it seems to be in Python 3), making me unable to do pretty much anything with the API. When I edit the code nothing happens and I'm assuming it's because I've already installed it, so how would I go about fixing that? I've looked around but didn't really find any clear instructions on how to do this.
Upvotes: 1
Views: 150
Reputation: 369
The podio library for python available on pip doesn't seems to be up to date. The last version from github seem to fix your bug.
You should install it as it is recommanded on the project readme:
pip install -e git+https://github.com/podio/podio-py.git#egg=podio-py
(See this issue)
If it doesn't fix your bug, you should fix it on github and make a pull request. This way you will still be able to upgrade it if there is updates later.
Upvotes: 3