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

이미지
( 경영전략,사업전략 ) 마이클 포터의 가치사슬 분석(Value Chain Analysis) 이론 ​ ​ #경영전략 #기업혁신전략 #가치창출전략 #생산유통전략 #가치사슬이론 #오픈이노베이션 #개방혁신전략 ​ ​ ​ 신사업을 하려면 사업 전략 기획 뿐아니라 프로그램을 개발하는 개발자도 경영 전략에 대한 인사이트가 필요 합니다. ​ ​ 시장에 대한 기회요인과 필요한 기술을 찾고 투입 되는 생산 비용과 효율성을 확보하는 것은 디지털 기업이 성공하는 필수적이고 핵섬적인 전략 요소가 될 것입니다. (실패하지 않으려면) (경영전략.사업전략) 기업의 가치 창출 전략 이론 ​ (1) 마이클 포터의 가치사슬 분석(Value Chain Analysis) (2) 자원 기반 관점 (Resource-Based View, RBV) 역량 확보 전략 (3) 헨리 체스브로(Henry Chesbrough) 개방형 혁신(Open Innovation) 이론 (4) 블루 오션 전략 (Blue Ocean Strategy) https://couplewith.tistory.com/668 마이클 포터의 가치사슬 분석(Value Chain Analysis) 이론 마이클 포터의 가치사슬 분석(Value Chain Analysis)은 기업의 활동을 여러 단계로 나누어 각 단계에서 가치를 창출하는 방식을 분석하는 도구입니다. ​ 이 기법은 1985년 마이클 포터가 제안한 것으로, 기업 내부의 활동을 기본 활동과 지원 활동으로 구분하여 분석합니다. 이를 통해 기업은 각 활동에서 발생하는 비용과 가치를 파악하여 경쟁력을 강화할 수 있습니다. ​ ​ 1. 기본 활동 (Primary Activities) 2. 지원 활동 (Support Activities) ​ ​ ​ ​ ​ ​ ​ ​ ​ ​ ​ 1. 기본 활동 (Primary Activities) ​ ​ 1.1.내부 물류 (Inbound Logistics) ​ 설명: 원재료의 수급 및 저장, 재고 관리 등을 포함합니다. 예시: 자동차 제조업체...

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.

댓글

이 블로그의 인기 게시물

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

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

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