Python SDK Installation
Overview
Python SDK는 이전에 올려놓았던 포스팅을 잘 따라왔으면 자동으로 설치되어있을 것이다.
만약 설치가 안되어 있다면, 여기 또는 여기2 를 클릭해서 설치하면 된다.
이번 튜토리얼은 파이썬(Python)환경에서 어떻게 SDK를 import 하는지에 대해 설명할 것 이다.
sdk란 Software Development Kit의 약자이다.
Prerequisites
Sawtooth Python SDK는 파이썬 버전 3.5 또는 그 윗버젼이 설치되어 있어야 한다.
Importing the SDK
설치 과정의 일부로 Python SDK가 설치되고 표준 Python 가져 오기 시스템을 통해 사용할 수 있습니다. 예를 들어, Python REPL에서 SDK를 가져온 다음 SDK의 문서 문자열을 볼 수 있습니다
>>> import sawtooth_sdk >>> help(sawtooth_sdk) Help on package sawtooth_sdk: NAME sawtooth_sdk DESCRIPTION # Copyright 2016 Intel Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ------------------------------------------------------------------------------ PACKAGE CONTENTS client (package) processor (package) protobuf (package) workload (package) DATA __all__ = ['client', 'processor'] FILE /usr/lib/python3/dist-packages/sawtooth_sdk/__init__.py |