tuomur / python-odata

A simple library for read/write access to OData services
MIT License
79 stars 59 forks source link

Several smaller issues #26

Closed nicenemo closed 5 years ago

nicenemo commented 6 years ago

Fix a few isuses:

tpow commented 5 years ago

The fix related to "correct filter url with %20 instead of +" is unnecessary, I believe. It appears that Requests already properly encodes the URL with %20.

The current fix also does not work correctly with Python 2.7. It looks like it would need "from urllib import urlencode". But again, I believe this fix is unnecessary and should be removed.