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

 

Rocky Linux에서 Docker Compose 사용 - Install Docker

 

 


Rocky Linux에서 Docker Compose를 사용할 수 있습니다. Docker Compose는 다중 컨테이너 Docker 애플리케이션을 정의하고 실행하기 위한 도구입니다. Rocky Linux는 Linux 배포판이지만 Docker Compose를 설치하여 사용할 수 있습니다.

Rocky Linux에 Docker Compose를 설치하는 일반적인 단계는 다음과 같습니다.

1. Docker가 아직 설치되지 않은 경우 Rocky Linux에 Docker를 설치합니다.
    다음 명령을 사용하여 이 작업을 수행할 수 있습니다.

 

sudo dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo
sudo dnf install docker-ce
sudo systemctl start docker
sudo systemctl enable docker

 

 

2. 다음 명령을 사용하여 Docker Compose를 다운로드합니다.

 

sudo curl -L "https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose

 

 

3. 다운로드한 바이너리를 실행 가능하게 만듭니다.

sudo chmod +x /usr/local/bin/docker-compose

 

 

4. 다음을 실행하여 설치를 확인합니다.

docker-compose --version

 

Rocky Linux 시스템에 Docker Compose가 설치되어 사용 가능한지 확인됩니다. 그런 다음 Docker Compose YAML 파일을 사용하여 다중 컨테이너 애플리케이션을 관리하는 데 사용할 수 있습니다.

 

댓글

이 블로그의 인기 게시물

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

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

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