Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pjt3591oo/rust-exchange-crawler

rust 공부겸 만들어보는 크롤러
https://github.com/pjt3591oo/rust-exchange-crawler

crawler rust

Last synced: 6 days ago
JSON representation

rust 공부겸 만들어보는 크롤러

Awesome Lists containing this project

README

        

# exchange crawler

### build & run

* build

```
$ cargo build
```

* run

```bash
$ cd target/debug/
```

```bash
$ ./exchange-crawler --help

Exchange Crawler 1.0

JeongTae

crawler execution options

USAGE:
exchange-crawler --symbol --count --exchange

FLAGS:
-h, --help Print help information
-V, --version Print version information

OPTIONS:
-c, --count trading count
-e, --exchange upbit, coinone, cobit
-s, --symbol Sets a crypto currency symbol
```

```bash
$ ./exchange-crawler --symbol BTC --count 2 --exchange coinone
```

upbit는 count로 결과 데이터 갯수 조정 가능하지만 coinone, korbit은 날짜 단위로 조회한다.

### Todo

count를 날짜 단위로 조회할 수 있도록 한다.