crypto-crawler 4.7.9

A rock-solid cryprocurrency crawler.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[macro_use]
mod utils;

pub(super) mod binance;
pub(super) mod bitmex;
pub(super) mod deribit;
pub(super) mod huobi;
pub(super) mod kucoin;
pub(super) mod okx;
pub(super) mod zb;
pub(super) mod zbg;

pub use utils::fetch_symbols_retry;
pub(super) use utils::{
    crawl_candlestick_ext, crawl_event, crawl_open_interest, crawl_snapshot,
    create_ws_client_symbol,
};