라벨이 unique_list인 게시물 표시

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

Python 리스트형 - 중복값 없는 Unique List 만들기

이미지
  Python 리스트형  -  중복값 없는  Unique List 만들기 리스트을 병합하면 값이 중복으로 입력이 됩니다. 이때 중복을 제거하고 리스트를 만드는 방법으로  Unique List를 만드는 방법을 정리 하였습니다.   리스트형의 특징과 활용 1. 다양한 데이터를 저장 : 변수형 관계 없음 2. 순서가 있음 : 입력되는 순서대로 내부 index로 관리됨 3. 가변성 : 리스트의 내용을 변경할 수 있음 (입력,수정,삭제) 4. 길이를 가짐:리스트는 길이 요소를 가짐   len()\ 5. 슬라이싱 : 리스트에서 일부분을 추출하려면 슬라이싱(분리)하여 사용 가능 6. 반복하여 처리 가능 : 리스트형을 반복문에서 쉽게 사용   리스트형의 Unique List 값 저장 1.  .set()을 이용한 Unique 리스트  리스트는 입력 값의 종류에 상관없이 순서대로 저장하므로 값의 중복이 발생 됩니다. 이러한 리스트에 중복된 값을 제거하고 Unique 값을 저장하는 방법입니다. print ( " *************************** " ) print ( " make list data using set() " ) print ( " *************************** " ) key1 = [ 'a' , 'a2' , 'a3' , 'a4' , 'a5' , 'a6' ] key2 = [ 'b' , 'b2' , 'b3' , 'b4' , 'b5' , 'b6' ] key3 = [ 'c' , 'c1' , 'c2' , 'c3' , 'c4' , 'c5' , 'c6' ] key4 = [ 'a1' , 'b1'

이 블로그의 인기 게시물

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

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

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