{"id":18577683,"url":"https://github.com/pjt3591oo/exchange-crawler","last_synced_at":"2026-07-03T20:31:38.030Z","repository":{"id":100330809,"uuid":"189834323","full_name":"pjt3591oo/exchange-crawler","owner":"pjt3591oo","description":"업비트, 코인원 크롤러","archived":false,"fork":false,"pushed_at":"2023-05-22T22:16:47.000Z","size":809,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-27T01:27:18.219Z","etag":null,"topics":["crawler","data","exchange","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pjt3591oo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-06-02T10:44:53.000Z","updated_at":"2021-11-15T23:20:32.000Z","dependencies_parsed_at":"2024-11-06T23:48:01.383Z","dependency_job_id":null,"html_url":"https://github.com/pjt3591oo/exchange-crawler","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pjt3591oo/exchange-crawler","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pjt3591oo%2Fexchange-crawler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pjt3591oo%2Fexchange-crawler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pjt3591oo%2Fexchange-crawler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pjt3591oo%2Fexchange-crawler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pjt3591oo","download_url":"https://codeload.github.com/pjt3591oo/exchange-crawler/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pjt3591oo%2Fexchange-crawler/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35101088,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-03T02:00:05.635Z","response_time":110,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["crawler","data","exchange","python"],"created_at":"2024-11-06T23:29:55.444Z","updated_at":"2026-07-03T20:31:38.003Z","avatar_url":"https://github.com/pjt3591oo.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# exchange crawler\n\n업비트, 코인원 크롤러 [문서 바로가기](./docs/crawler.md)\n\n## 의존성 모듈 설치\n\n```bash\n$ pip install requirements.txt\n```\n\n## 설정파일\n\n**`./config/*.py`**\n\n* upbit\n\n```python\nMARKETS = ['krw', 'btc']\nTICKERS = ['btc', 'eth', 'eos']\nUNITS = { # d: day, m: minutes\n  'd': 'days',\n  'm': 'minutes'\n} \nPEDS = {\n  'd': [1],\n  'm': [1, 5, 10]\n}\n```\n\n* coinone\n\n```python\nMARKETS = ['krw']\nTICKERS = ['btc', 'eth', 'eos']\nUNITS = { # d: day, m: minutes\n  'd': 'd',\n  'm': 'm'\n} \nPEDS = {\n  'd': [1],\n  'm': [1, 5, 10]\n}\n```\n\n## 실행\n\n```bash\n$ python3 app.py --help\n\nusage: ECC [-h] [--version] [--exchange EXCHANGE] [--market MARKET]\n           [--ticker TICKER] [--unit UNIT] [--ped PED]\n\nExchange Crawler CLI Program.\n\noptional arguments:\n  -h, --help           show this help message and exit\n  --version            show program's version number and exit\n  --exchange EXCHANGE  upbit, coinone (default: upbit)\n  --market MARKET      market (default: krw)\n  --ticker TICKER      cointicker (default: btc)\n  --unit UNIT          d(day), m(minutes) (default: m)\n  --ped PED            간격 (default: 5)\n```\n\n\u003e 결과 데이터는 **`./data/거래소_마켓_거래코인_거래간격.csv`** 형태로 저장\n\n### upbit\n\n- sample 1\n\n```bash\n$ python3 app.py --exchange upbit --market KRW --ticker ETH --unit m --ped 5\n```\n\n* 거래소: upbit\n* 마켓: KRW(한화)\n* 거래코인: ETH(이더리움)\n* 거래간격: 5분\n\n- sample 2\n\n```\n$ python3 app.py --exchange upbit --market BTC --ticker ETH --unit d --ped 1\n```\n\n* 거래소: upbit\n* 마켓: BTC(비트코인)\n* 거래코인: ETH(이오스)\n* 거래간격: 1일\n\n### coinone\n\n- sample 1\n\n```\n$ python3 app.py --exchange coinone --market KRW --ticker ETH --unit m --ped 1\n```\n\n* 거래소: coinone\n* 마켓: KRW(한화)\n* 거래코인: ETH(이더리움)\n* 거래간격: 1분\n\n- sample 2\n\n```\n$ python3 app.py --exchange coinone --market KRW --ticker ETH --unit m --ped 5\n```\n\n* 거래소: coinone\n* 마켓: KRW(한화)\n* 거래코인: ETH(이더리움)\n* 거래간격: 5분\n\n- sample 3\n\n```\n$ python3 app.py --exchange coinone --market KRW --ticker ETH --unit d --ped 1\n```\n\n* 거래소: coinone\n* 마켓: KRW(한화)\n* 거래코인: ETH(이더리움)\n* 거래간격: 1일","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpjt3591oo%2Fexchange-crawler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpjt3591oo%2Fexchange-crawler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpjt3591oo%2Fexchange-crawler/lists"}