2025년 국내 은행 업권의 AI 기반 사업 현황

이미지
2025년 국내 은행 업권의 AI 기반 사업 현황 2025년 국내 주요 은행들은 AI 기술을 활용하여 금융 서비스의 혁신과 효율성을 극대화하고 있습니다. 각 은행은 생성형 AI, 머신러닝, XAI 등을 활용하여 고객 경험 개선, 내부 업무 자동화, 신용평가 고도화 등 다양한 영역에서 AI 기반 서비스를 도입하고 있습니다. 은행별 주요 AI 기능 및 서비스        은행 주요 기능 및 서비스 진행 일정 신한은행 - AI 뱅커 기반 ‘디지털 데스크’와 무인점포 ‘AI 브랜치’ 운영- 감정 인식 분석을 통한 금융사고 예방 - 생성형 AI 기반 투자 및 금융지식 Q&A 서비스 2024년부터 점포 확대 및 2025년 상반기까지 생성형 AI 플랫폼 구축 예정 • 생성형   AI  기반  AI  은행원 • 생성형   AI  투자 및  금융지식  Q&A  서비스 NH농협은행 - 모든 영업점에 AI 뱅커 배치 -  AI  금융상품 추천 서비스 출시 ( XAI)   XAI를 활용한 금융상품 추천 서비스- 외국인 및 고령층을 위한 상담 서비스 제공 - 기업 대출 심사  AI  도입 2024년부터 적용 시작, 2025년까지 전국 확대 • 생성형   AI  플랫폼 기반 금융서비스 KB국민은행 • AI  금융비서 서비스 베타  오픈 - ‘리브 넥스트’의 AI 금융비서 베타 서비스- KB-GPT 및 KB-AI OCR 기술 활용- 생성형 AI 금융상담 Agent 도입 • 의심거래 보고 (STR) AI  적용 2024년부터 PoC 진행, 2025년 상반기까지 상용화 예정 • 생성형   AI  플랫폼 기반 금융서비스 우리은행 - ‘우리WON뱅킹’ 내 대출 상담 확장- 이상 외화 송금 탐지 프로세스 도입 • 생성형   AI  기반 ...

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'))
api_request.add_header('API-Key', api_key)
api_request.add_header('API-Sign', api_signature)

# Send the request and get the response
api_response = urllib.request.urlopen(api_request).read().decode()
token = json.loads(api_response)['result']['token']

print('WebSocket Token:', token)
```

Make sure to replace `'YOUR_API_PUBLIC_KEY'` and `'YOUR_API_PRIVATE_KEY'` with your actual Kraken API keys. This script will generate a WebSocket authentication token that you can use for private feeds¹.

If you need more examples or have any specific requirements, feel free to ask!

원본: Copilot과의 대화, 2024. 11. 2.
(1) How to retrieve a WebSocket authentication token - Example code in Python 3 | Kraken. https://support.kraken.com/hc/articles/360034437672-How-to-retrieve-a-WebSocket-authentication-token-Example-code-in-Python-3.
(2) veox/python3-krakenex: REST Exchange API for Kraken.com, Python 3 - GitHub. https://github.com/veox/python3-krakenex.
(3) REST API command line client (Python) - Kraken. https://support.kraken.com/hc/en-us/articles/360025180232-REST-API-command-line-client-Python-.
(4) Spot REST Authentication | Kraken API Center. https://docs.kraken.com/api/docs/guides/spot-rest-auth/.
(5) undefined. https://api.kraken.com/0/private/GetWebSocketsToken.

댓글

이 블로그의 인기 게시물

[좋은글] 나침반의 바늘이 흔들리는 한 그 나침반은 틀리는 일이 없다 - 신영복

( 경영전략,사업전략 ) 마이클 포터의 가치사슬 분석(Value Chain Analysis) 이론

[Ubuntu]Linux Tunning -네트워크 커널 매개 변수 최적화