여니의 Side Project/가상화폐 매수매도 프로그램 4

[Node.js 버전 관리 도구] nvm 설치하기

github.com/coreybutler/nvm-windows/releases Releases · coreybutler/nvm-windows A node.js version management utility for Windows. Ironically written in Go. - coreybutler/nvm-windows github.com >> nvm-setup.zip 다운로드 nvm install version은 nodejs.org/ko/ Node.js Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. nodejs.org 위 링크에 들어가서 최신버전 확인하기 Node.js 웹 서버를 생성하고 docker로 배포하기 pac..

[#3] 업비트 시세 종목 조회 , 마켓 코드 조회하기(requests,beautifulSoup, http응답메소드 etc)

docs.upbit.com/reference#open-api-%ED%82%A4-%EB%A6%AC%EC%8A%A4%ED%8A%B8-%EC%A1%B0%ED%9A%8C 업비트 개발자 센터 업비트 Open API 사용을 위한 개발 문서를 제공 합니다.업비트 Open API 사용하여 다양한 앱과 프로그램을 제작해보세요. docs.upbit.com requests 모듈 >> HTTP 요청을 보내는 모듈이다. pypi.org/project/requests/ requests Python HTTP for Humans. pypi.org import requests response=requests.get('url입력') response.status_code response.text 주소를 GET 요청(Request)를 통해..

[#2] 웹소켓 , 비동기에 대한 기초 지식 쌓기 & upbit websocket api

websockets.readthedocs.io/en/stable/intro.html Getting started — websockets 8.1 documentation You will usually want to process several messages during the lifetime of a connection. Therefore you must write a loop. Here are the basic patterns for building a WebSocket server. Registration As shown in the synchronization example above, if you need to websockets.readthedocs.io docs.upbit.com/docs/up..

[#1] 가상화폐 프로그램 만들기 (ccxt 다운로드 , 가상 환경 설정)

API를 사용해서 가상화폐 현재 시세와 매수 매도 주문까지 하려했으나, 데이터를 불러오는 속도가 현저하게 낮아서 ccxt 라이브러리를 사용해보고자 한다. (CryptoCurrency eXchange Trading Library) github.com/ccxt/ccxt/ ccxt/ccxt A JavaScript / Python / PHP cryptocurrency trading API with support for more than 120 bitcoin/altcoin exchanges - ccxt/ccxt github.com 사용방법도 readme에 자세히 나와있다. * 사용법 * 1. 설치를 먼저 해야 하는데, git clone으로 ccxt 레파지토리를 클론해준다. (현재 폴더에) git clone htt..