You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pycoingecko v2.0.0
==================
* Allow Python Lists and Booleans for any endpoint parameter (list converted to comma-separated string & bool converted to lower case string)
* Removed /indexes/{id} endpoint (Get market index by id) -> cg.get_indexes_by_id()
* Improved request exceptions handling (Fixed unbound local exception on GET request failure)
pycoingecko v1.0.0
==================
* update tests
* include more contract endpoints
* include /coins/{id}/market_chart/range endpoint
* basic methods for finance endpoints with tests
* updated error handling
* added check for json format in __request; coingecko returns a html string when something goes wrong in the request, which results in an error when json.loads is called on the html string.