🚀 AI & Tech 데일리 브리핑 (2026.03.30)

이미지
금융트렌드 🚀 AI & Tech 데일리 브리핑 (2026.03.30) AgileBus 2026. 3. 31. 08:13 # 🚀 AI & Tech 데일리 브리핑 (2026.03.30) 오늘의 글로벌 AI 시장은 플랫폼의 수익화 과제와 멀티 모델을 통한 기술적 돌파구가 핵심 키워드입니다. 최신 동향을 한눈에 확인하세요! --- 글로벌 빅테크 심층 분석 1. OpenAI ChatGPT 앱 플랫폼, 출시 6개월 만에 성장 정체 * **현황:** 300개 이상의 통합 서비스가 입점했음에도 불구하고, 실제 구매 전환으로 이어지는 채택률이 부진한 것으로 나타났습니다. * **대응:** 사용자들이 채팅 내에서 상품을 둘러보기만 하는 현상이 지속되자, OpenAI는 '즉시 결제(Instant Checkout)' 기능을 축소하고 파트너 앱 내 거래로 전략을 수정했습니다. * **이슈:** 에어비앤비 CEO 브라이언 체스키는 "아직 준비가 안 됐다"고 평가했으며, 개발자들 사이에서는 SDK 버그와 낮은 앱 검색 기능에 대한 불만이 제기되고 있습니다. 2. 마이크로소프트, '멀티 모델' 전략으로 신뢰성 확보 (Critique 공개) * **기술 혁신:** 리서치 초안은 **OpenAI의 GPT**가 작성하고, 검증은 **앤트로픽(Anthropic)의 Claude**가 수행하는 교차 확인 시스템 'Critique'를 선보였습니다. * **성과:** 이 방식은 DRACO 딥 리서치 벤치마크에서 단일 모델 대비 13.8%의 성능 향상을 기록하며 업계를 앞섰습니다. * **확산:** Claude 기반의 **Copilot Cowork** 에이전트를 '프런티어(Frontier)' 프로그램을 통해 더 많은 기업 고객에게 개방하며 점유율 확대에 나섰습니다. --- 📑 분야별 주요 뉴스 스크랩 1. [산업 지형] 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.

댓글

이 블로그의 인기 게시물

Linux - Rsyncd 설치와 selinux 문제 해결법 (Centos8)

chatGPT 응답 품질 점검 - Check outputs

KrakenD API Gateway - krakend.json 파일의 기본 구조