| """ |
| Constants representing the nuumber of seconds in a week. |
| """ |
| ONE_MONTH_IN_SECONDS : int = 86400 * 30 |
|
|
| """ |
| Constants representing the nuumber of seconds in a week. |
| """ |
| ONE_WEEK_IN_SECONDS : int = 604800 |
|
|
| """ |
| Constants representing the nuumber of seconds in a day. |
| """ |
| ONE_DAY_IN_SECONDS : int = 86400 |
|
|
| """ |
| Constant representing the number of seconds in one hour. |
| """ |
| ONE_HOUR_IN_SECONDS : int = 3600 |
|
|
| """ |
| Constant representing the number of seconds in one minute. |
| """ |
| ONE_MINUTE_IN_SECONDS : int = 60 |
|
|
| """ |
| DEX_SCREENER_BASE_URL : str = "https://api.dexscreener.com/latest/dex/" |
| |
| This constant is used to represent the base URL for DexScreener API. |
| It is defined as "https://api.dexscreener.com/latest/dex/". |
| """ |
| DEX_SCREENER_BASE_URL : str = "https://api.dexscreener.com/latest/dex/" |
|
|
| """ |
| JINA_SEARCH_BASE_ENDPOINT : str = "https://s.jina.ai/" |
| |
| This constant is used to represent the base endpoint for Jina Search API. |
| It is defined as "https://s.jina.ai/". |
| """ |
| JINA_SEARCH_BASE_ENDPOINT : str = "https://s.jina.ai/" |
|
|
| """ |
| JINA_READER_BASE_ENDPOINT : str = "https://r.jina.ai/" |
| |
| This constant is used to represent the base endpoint for Jina Reader API. |
| It is defined as "https://r.jina.ai/". |
| """ |
| JINA_READER_BASE_ENDPOINT : str = "https://r.jina.ai/" |
|
|
| """ |
| CRYPTO_COMPARE_BASE_URL: str = "https://min-api.cryptocompare.com/" |
| |
| This constant is used to represent the base URL for CryptoCompare API. |
| It is defined as "https://min-api.cryptocompare.com/". |
| """ |
| CRYPTO_COMPARE_BASE_URL: str = "https://min-api.cryptocompare.com/" |
|
|
|
|
| |
|
|
| SEARCH_DATA_TTL : int = ONE_WEEK_IN_SECONDS |