Skip to content

Tags: man-c/pycoingecko

Tags

3.2.0

Toggle 3.2.0's commit message
pycoingecko v3.2.0 / 2024-11-13

==================

  * support both public (with or without demo_api_key) and pro (with pro api key) api in requests
  * added new methods in coins, asset_platforms, exchanges, nfts, global

3.1.0

Toggle 3.1.0's commit message
pycoingecko v3.1.0

==================

  * added nfts (beta) endpoints (/nfts/list, /nfts/{id}, /nfts/{asset_platform_id}/contract/{contract_address})
  * updated tests

3.0.0

Toggle 3.0.0's commit message
pycoingecko v3.0.0

==================

  * removed deprecated endpoints (status_updates, finance and events):
    * /coins/{id}/status_updates -> cg.get_coin_status_updates_by_id()
    * /exchanges/{id}/status_updates -> cg.get_exchanges_status_updates_by_id()
    * /finance_platforms -> cg.get_finance_platforms()
    * /finance_products -> cg.get_finance_products()
    * /status_updates -> cg.get_status_updates()
    * /events -> cg.get_events()
    * /events/countries -> cg.get_events_countries()
    * /events/types -> cg.get_events_types()
  * removed deprecated api_base_url param from CoinGeckoAPI init

2.3.0

Toggle 2.3.0's commit message
pycoingecko v2.3.0

==================

  * added /search endpoint
  * added CoinGecko Pro API support using api_key param in CoinGeckoAPI init (required in PRO version API calls)
  * added ability to modify how many retries to do in requests session using param retries in CoinGeckoAPI init (default: retries=5)
  * fixed session to mount retry adapter on https instead of http
  * fixed params passed in get_coin_market_chart_range_from_contract_address_by_id for /coins/{id}/contract/{contract_address}/market_chart/range endpoint

2.2.0

Toggle 2.2.0's commit message
pycoingecko v2.2.0

==================

  * Added /indexes/{market_id}/{id} and /companies/public_treasury/{coin_id} endpoints

2.1.0

Toggle 2.1.0's commit message
pycoingecko v2.1.0

==================

  * Added asset_platforms (/asset_platforms) and categories (/coins/categories/list, coins/categories) endpoints

2.0.0

Toggle 2.0.0's commit message
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)

1.4.1

Toggle 1.4.1's commit message
pycoingecko v1.4.1

==================

  * fixed __api_url_params issue for optional parametes of few endpoints (such as /coins/{id}/market_chart)

1.4.0

Toggle 1.4.0's commit message
pycoingecko v1.4.0

==================

  * added new endpoints (/coins/{id}/ohlc, /search/trending, /global/decentralized_finance_defi)

1.3.0

Toggle 1.3.0's commit message
pycoingecko v1.3.0

==================

  * allow optional arguments for **ALL** endopoints