이제 EthairBalloons를 Python에서 사용할 수 있습니다!
3354 단어 blockchainpythonweb3ethereum
마침내 거기에 있습니다.
이더리움 블록체인을 위한 많은 사랑을 받는 ORM 라이브러리를 이제 Python에서 사용할 수 있습니다.
EthAir 풍선은 무엇입니까?
EthAir Balloons는 이더리움 블록체인을 위한 엄격한 유형의 ORM 라이브러리입니다. 사용자 지정 복잡한 스마트 계약을 작성하지 않고도 이더리움 블록체인을 조직적이고 모델 지향적인 방식으로 영구 저장소로 사용할 수 있습니다.
지금까지 EthairBalloons는 available for JavaScript만 있었고 npm(
npm install --save ethairballoons
)을 통해 설치할 수 있었습니다.그러나 이제부터는 공식 Python 버전도 있습니다.
여기GitHub repository에서 확인하고
pip install ethairballoons
를 통해 설치할 수 있습니다.petros Demetrakopoulos / ethairballoons.py
이더리움 블록체인을 위한 엄격한 형식의 ORM 라이브러리입니다.
Eth공기 풍선
이더리움 블록체인을 위한 엄격한 형식의 ORM 라이브러리
사용자 지정 복잡한 스마트 계약을 작성하지 않고도 이더리움 블록체인을 조직적이고 모델 지향적인 방식으로 영구 저장소로 사용할 수 있습니다.
메모
거래 수수료가 엄청날 수 있으므로 EthAir Balloons 모델을 프라이빗 이더리움 블록체인에 배포하거나 로컬에서 사용하는 것이 좋습니다.ganache
설치
pip install ethairballoons
설정
from ethairballoons import ethairBalloons
# frist parameter is the IP of the Ethereum network we want to store data
# seconda parameter is the path to save to smart contract
provider = ethairBalloons('127.0.0.1', '../')
mySchema = provider.createSchema(modelDefinition={
'name': "Car",
'contractName': "carsContract",
'properties': [{
'name': "model",
'type': "bytes32",
'primaryKey': True
},
{
'name': "engine",
'type': "bytes32",
},
{
'name': "cylinders",
…
View on GitHub
.
Reference
이 문제에 관하여(이제 EthairBalloons를 Python에서 사용할 수 있습니다!), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/demetrakopetros/ethairballoons-is-now-available-for-python-4gkf
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
pip install ethairballoons
설정
from ethairballoons import ethairBalloons
# frist parameter is the IP of the Ethereum network we want to store data
# seconda parameter is the path to save to smart contract
provider = ethairBalloons('127.0.0.1', '../')
mySchema = provider.createSchema(modelDefinition={
'name': "Car",
'contractName': "carsContract",
'properties': [{
'name': "model",
'type': "bytes32",
'primaryKey': True
},
{
'name': "engine",
'type': "bytes32",
},
{
'name': "cylinders",
…
View on GitHub
.
Reference
이 문제에 관하여(이제 EthairBalloons를 Python에서 사용할 수 있습니다!), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/demetrakopetros/ethairballoons-is-now-available-for-python-4gkf
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(이제 EthairBalloons를 Python에서 사용할 수 있습니다!), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/demetrakopetros/ethairballoons-is-now-available-for-python-4gkf텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)