Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 공부겸 만들어보는 크롤러
- Host: GitHub
- URL: https://github.com/pjt3591oo/rust-exchange-crawler
- Owner: pjt3591oo
- Created: 2021-10-11T00:42:58.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-12T07:06:59.000Z (about 3 years ago)
- Last Synced: 2024-11-06T23:34:44.232Z (about 2 months 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 --helpExchange Crawler 1.0
JeongTae
crawler execution options
USAGE:
exchange-crawler --symbol --count --exchangeFLAGS:
-h, --help Print help information
-V, --version Print version informationOPTIONS:
-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를 날짜 단위로 조회할 수 있도록 한다.