crypticorn 2.8.0rc7__py3-none-any.whl → 2.8.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. crypticorn/__init__.py +1 -1
  2. crypticorn/cli/init.py +2 -2
  3. crypticorn/common/exceptions.py +5 -4
  4. crypticorn/common/logging.py +13 -4
  5. crypticorn/common/middleware.py +2 -3
  6. crypticorn/common/router/admin_router.py +10 -12
  7. crypticorn/common/router/status_router.py +2 -2
  8. crypticorn/hive/utils.py +1 -2
  9. crypticorn/klines/client/__init__.py +9 -1
  10. crypticorn/klines/client/api/__init__.py +1 -0
  11. crypticorn/klines/client/api/admin_api.py +1455 -0
  12. crypticorn/klines/client/api/change_in_timeframe_api.py +24 -20
  13. crypticorn/klines/client/api/funding_rates_api.py +12 -10
  14. crypticorn/klines/client/api/ohlcv_data_api.py +37 -24
  15. crypticorn/klines/client/api/status_api.py +8 -235
  16. crypticorn/klines/client/api/symbols_api.py +12 -9
  17. crypticorn/klines/client/api/udf_api.py +6 -6
  18. crypticorn/klines/client/models/__init__.py +8 -1
  19. crypticorn/klines/client/models/api_error_identifier.py +115 -0
  20. crypticorn/klines/client/models/api_error_level.py +37 -0
  21. crypticorn/klines/client/models/api_error_type.py +37 -0
  22. crypticorn/klines/client/models/exception_detail.py +6 -3
  23. crypticorn/klines/client/models/funding_rate.py +6 -12
  24. crypticorn/klines/client/models/funding_rate_response.py +103 -0
  25. crypticorn/klines/client/models/internal_exchange.py +39 -0
  26. crypticorn/klines/client/models/log_level.py +38 -0
  27. crypticorn/klines/client/models/market_type.py +35 -0
  28. crypticorn/klines/client/models/{ohlcv_history.py → ohlcv.py} +12 -13
  29. crypticorn/klines/client/models/search_symbol.py +3 -4
  30. crypticorn/klines/client/models/udf_config.py +2 -1
  31. crypticorn/klines/main.py +1 -13
  32. crypticorn/metrics/client/__init__.py +11 -0
  33. crypticorn/metrics/client/api/__init__.py +2 -0
  34. crypticorn/metrics/client/api/admin_api.py +1452 -0
  35. crypticorn/metrics/client/api/exchanges_api.py +51 -40
  36. crypticorn/metrics/client/api/indicators_api.py +49 -32
  37. crypticorn/metrics/client/api/logs_api.py +7 -7
  38. crypticorn/metrics/client/api/marketcap_api.py +28 -25
  39. crypticorn/metrics/client/api/markets_api.py +50 -278
  40. crypticorn/metrics/client/api/quote_currencies_api.py +289 -0
  41. crypticorn/metrics/client/api/status_api.py +4 -231
  42. crypticorn/metrics/client/api/tokens_api.py +241 -37
  43. crypticorn/metrics/client/models/__init__.py +9 -0
  44. crypticorn/metrics/client/models/api_error_identifier.py +115 -0
  45. crypticorn/metrics/client/models/api_error_level.py +37 -0
  46. crypticorn/metrics/client/models/api_error_type.py +37 -0
  47. crypticorn/metrics/client/models/exception_detail.py +6 -3
  48. crypticorn/metrics/client/models/exchange_mapping.py +121 -0
  49. crypticorn/metrics/client/models/internal_exchange.py +39 -0
  50. crypticorn/metrics/client/models/log_level.py +38 -0
  51. crypticorn/metrics/client/models/market_type.py +35 -0
  52. crypticorn/metrics/client/models/marketcap_ranking.py +87 -0
  53. crypticorn/metrics/client/models/ohlcv.py +113 -0
  54. crypticorn/metrics/main.py +14 -2
  55. {crypticorn-2.8.0rc7.dist-info → crypticorn-2.8.1.dist-info}/METADATA +3 -2
  56. {crypticorn-2.8.0rc7.dist-info → crypticorn-2.8.1.dist-info}/RECORD +59 -40
  57. {crypticorn-2.8.0rc7.dist-info → crypticorn-2.8.1.dist-info}/WHEEL +0 -0
  58. {crypticorn-2.8.0rc7.dist-info → crypticorn-2.8.1.dist-info}/entry_points.txt +0 -0
  59. {crypticorn-2.8.0rc7.dist-info → crypticorn-2.8.1.dist-info}/top_level.txt +0 -0