라벨이 좋은글인 게시물 표시

Kraken api - get token with python

Kraken api - get token with python an example of how you can generate a WebSocket authentication token using Python for Kraken's API: ```python import time import base64 import hashlib import hmac import urllib.request import json # Replace with your Kraken API public and private keys api_key = 'YOUR_API_PUBLIC_KEY' api_secret = 'YOUR_API_PRIVATE_KEY' # API endpoint and parameters api_path = '/0/private/GetWebSocketsToken' api_nonce = str(int(time.time() * 1000)) api_post = 'nonce=' + api_nonce # Create the SHA256 hash api_sha256 = hashlib.sha256(api_nonce.encode('utf-8') + api_post.encode('utf-8')).digest() # Create the HMAC signature api_hmac = hmac.new(base64.b64decode(api_secret), api_path.encode('utf-8') + api_sha256, hashlib.sha512) api_signature = base64.b64encode(api_hmac.digest()) # Create the request api_request = urllib.request.Request('https://api.kraken.com' + api_path, api_post.encode('utf-8')) ap

(명언) 지금 최선을 다하면 '미래'는 알아서 잘 풀릴 것이다

(명언) 지금 최선을 다하면 '미래'는 알아서 잘 풀릴 것이다 # 오늘의 명언 지금 최선을 다하면 '미래'는 알아서 잘 풀릴 것이다. – 개리 베이너척 – 2000년에 개봉한 미식축구 소재의 영화  애니 기븐 선데이(Any Given Sunday)에서  '인생은 1인치'라는 명대사로 유명합니다. 영화에서 토니 디마토 감독역을 맡은 알파치노는 게임의 마지막 5분을 남기면서 작전타임을 요청하고 선수들에게 이렇게 말합니다. "여러분, 인생과 축구는 같다. 1인치를 앞으로 더 나가느냐에 성공이 달려 있다. 그 1인치에 얼마나 최선을 다하느냐에 따라 거기서 승리와 패배가 갈라진다. 승리와 패배의 차이는 결국 1인치의 차이다. 우리는 오직 1인치를 위해 달릴 뿐이다." You find out life’s this game of inches. So is football because in either game, life or football, the margin for error is so small. I mean, one half a step too late or too early and you don’t quite make it. One half second, too slow, too fast, you don’t quite catch it. The inches we need are everywhere around us. They’re in every break of the game, every minute, every second. 1인치는 고작 2.54cm입니다. 그 짧은 거리를 더 나아갈 수 있느냐 없느냐로 성공과 실패, 승리와 패배, 삶과 죽음이 갈린다고 합니다. 우리는 항상 최고가 되려고 하지만 최고보다는 최선이 더 중요합니다. 모든 순간순간을 최선을 다하는 삶을 살아야 합니다. 게리 베이너척 (1975년 11월 14일 출생)  미국의 연쇄창업가, 연사, 작가로서 뉴욕 타임즈의 베스트 셀러 작가로 4회

이 블로그의 인기 게시물

SSL/TLS 인증서 오류를 해결- 리눅스명령모음 - SSL certificate problem

(truffle 환경 설정) 스마트 계약 배포 와 truffle deploy 오류 해결 - Error: Could not find artifacts for SimpleStorage from any sources

자기주권 신원 (SSI Self-Sovereign Identity) 인증의 발전 그리고 정보 민주화 (Information Democratization)