라벨이 정규표현식인 게시물 표시

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

[핵심기초] 파이썬에서 정규 표현식 이용하기

이미지
  [핵심기초] 파이썬에서 정규 표현식 이용하기 파이썬에서 정규표현식을 사용하기 위해서는 Regex를 위한 모듈인 re 모듈을 사용합니다.  re 모듈의 compile 함수는 정규식 패턴을 입력으로 받아들여 정규식 객체를 리턴합니다. re.compile('검색 대상 문자열') 함수로 검색 대상 문자열을 입력하고 정규식 객체 (re.RegexObject 클래스 객체)를 통해 정규식을 이용할 수있습니다. re.RegexObject 클래스는 re.search(pattern), re.match(pattern) ,re.split(pattern) 등과 같이 문자열을 검색, 분리, 대체 하는 다양한 함수들을 제공합니다. 1. 파이썬 Re모듈이 제공하는 Method 기능 - match(), search(), findall(), split(), sub() 등과 같이 다양한 함수를 제공합니다. 구분 Method 종류 설명 검색 re.match(RE, string) 문자열의 시작 부분에서 RE가 일치하는지 판단합니다. re.search(RE, string) 문자열을 읽어  RE가 일치하는 위치를 찾으습니다. re.findall(RE,string) RE가 일치하는 모든 부분 문자열을 찾아 리스트로 반환합니다. re. finditer(RE,string) RE가 일치하는 모든 부분 문자열을 찾아 iterators 로 반환합니다 분리 re.split(RE, string) 문자열을 RE 패턴으로 쪼개어 리스트로 반환 합니다. 대체 re.sub(RE, SUB,  string) 문자열에서 RE 패턴의 문자열을 SUB 문자열로 대체합니다. * Iterators :  https://www.w3schools.com/python/python_iterators.asp 다음은 파이썬 정규표현식 re 모듈을 import 하고 특정 문자열에서 무궁화로 시작하고 bloomed.로 마치는 문자를 확인하는  정규표현식입 니다. import  re txt =  "무궁화 꽃이 피었다, The

이 블로그의 인기 게시물

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

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

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