Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- ssl.key
- MySQL
- 웹소켓 api
- 백엔드 개발
- haystack
- 비즈니스
- 비즈니스적 관점에서 생각하는 개발자
- 개발자와 비즈니스 관계
- django #django 5.0 #django 5.0 요약
- 정렬
- django 슬랙봇
- 개발자에세이
- 개발회고
- django slack
- django
- redis lock
- 비즈니스적 관점에서 생각하는 개발자 #개발자 마인드
- 숲을 바라보는 개발자
- django slack bot
- add colume
- 개발자의 마인드
- 슬랙봇
- private.pem
- slack bot
- 서버 개발
- 개발자와 비즈니스
- 알고리즘
- 업비트 웹소켓
- AWS Aurora
- public.pem
Archives
- Today
- Total
목록웹소켓 (1)
Info-Tech
upbit websocket api사용방법
Upbit Websocket통신 할 수 있는 소스를 구현해봤습니다. 출처 : https://docs.upbit.com/docs/upbit-quotation-websocket import websocket import json try: import thread except ImportError: import _thread as thread import time def on_message(ws, message): get_message = json.loads(message.decode('utf-8')) print(get_message) def on_error(ws, error): print(error) def on_close(ws): print("close") def on_open(ws): def run(*a..
프로그래밍/파이썬 & 장고
2019. 2. 16. 03:48