Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion pycoingecko/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,10 @@ def get_coin_ticker_by_id(self, id, **kwargs):

@func_args_preprocessing
def get_coin_history_by_id(self, id, date, **kwargs):
"""Get historical data (name, price, market, stats) at a given date for a coin"""
"""Get historical data (name, price, market, stats) at a given date for a coin

date string format: 'dd-mm-yyyy'
"""

kwargs['date'] = date

Expand Down