라벨이 commands인 게시물 표시

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

How to Start WSL2 - WSL 기본 명령들

이미지
How to Start WSL2 : Windows Subsystem for Linux (WSL) 설치와 사용법 WSL사용법- How To Start WSL 1. Windows Subsystem for Linux (WSL) 설치와 사용법   2. 알면 좋은 WSL 기본 명령 사용법   3. WSL 설치 디렉토리 경로 변경 4. WSL ssh 설치와 접속 하기 How to Start WSL2 - WSL 기본 명령들   Windows Subsystem for Linux (WSL)은 Windows 운영 체제에서 네이티브 하게 Linux 명령 및 응용 프로그램을 실행할 수 있도록 하는 기술입니다. WSL사용을 위한 기본 명령들을 정리해 봅니다.    WSL 기본 명령   1)  wsl --help 명령:  WSL 명령어를 사용할 때 다양한 옵션과 사용법을 확인합니다. 2) wsl --set-version  <Version>  : Linux 배포판의 버전을 설정합니다.  Version : 2     예)  wsl --set-version 2 3) wsl --set-default-version <Version>: 기본 Linux 배포판의 버전을 설정합니다.    4) wsl --list  --online, -o : 설치 가능한 Linux 배포판 목록을 표시합니다.     wsl --list  --verbose : 설치된 Linux 배포판 목록을 표시합니다. 5) wsl --install  <배포판명>   : Linux 배포판을 설치합니다.    예)  wsl --install --distribution  Ubuntu-22.04 6) wsl --distribution <Distribution Name> --user <User Name>     -  지정한 배포판을 실행하고 특정 사용자로 접속합니다 7) wsl --terminate, -t <배포판명>      - 실행 중인  배포판을 종료합니다. 8) wsl -

이 블로그의 인기 게시물

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

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

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