https://github.com/pjt3591oo/rust-exchange-crawler
rust 공부겸 만들어보는 크롤러
https://github.com/pjt3591oo/rust-exchange-crawler
crawler rust
Last synced: about 1 year ago
JSON representation
rust 공부겸 만들어보는 크롤러
- Host: GitHub
- URL: https://github.com/pjt3591oo/rust-exchange-crawler
- Owner: pjt3591oo
- Created: 2021-10-11T00:42:58.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-12T07:06:59.000Z (over 4 years ago)
- Last Synced: 2025-02-17T15:26:11.027Z (over 1 year ago)
- Topics: crawler, rust
- Language: Rust
- Homepage:
- Size: 14.6 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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를 날짜 단위로 조회할 수 있도록 한다.