Skip to main content

Release of the unofficial python geth library

Project description

HELP NEEDED

...with my dissertation. It is only 11 questions. As this package is part of my thesis it would be much appreciated if you spent a few moments on filling out these 11 anonymous questions. Thanks!

PyGeth

PyGeth is a Python library for a quick setup of an Ethereum blockchain using Geth and for fast prototyping of contracts with truffle.

Installation

Prerequisites

To be able to run this package, please install Geth and Npm (5.2.0 or higher) and add them to your Path. Note: This has solely been tested on Windows.

Use the package manager pip to install python-geth.

pip install python-geth

Usage

Node

from python_geth.node import Node

node1 = Node(datadir="C:\\Users\\macutko\\Desktop\\node01")
node1.start_node()

This creates a geth node that allows interaction with it via the web3 library.

node1.w3.geth.miner.start(1)

To add a node on the chain do as follows. It requires the same genesis file.

node2 = Node(datadir="C:\\Users\\macutko\\Desktop\\node02", genesis_file="C:\\Users\\macutko\\Desktop\\node01\\config\\genesisjson")
node2.start_node()
node1.add_node(node2.w3.geth.admin.node_info()['enode'])

Contracts

To be able to quickly deploy contracts and interact with them first configure truffle.

node1.configure_truffle()

To deploy a contract unlock an account, create a Contract Interface instance and deploy a contract. highly recommended to wrap deployment into a try and accept block. This is to prevent zombie processes.

account, password = node1.get_first_account()
node1.w3.geth.personal.unlock_account(account, password)

CI = ContractInterface(w3=node1.w3, datadir="C:\\Users\\macutko\\Desktop\\node01")
try:
    m_con = CI.deploy_contract(contract_file="C:\\Users\\macutko\\Desktop\\GUID.sol",constructor_params=['2265072m'])[0]
except:
    node1.stop_node()

Example Contract

Example contract:

pragma solidity ^0.4.24;

contract HelloWorld {

    string saySomething;

    constructor() public  {
        saySomething = "Hello World!";
    }

    function speak() public constant returns(string itSays) {
        return saySomething;
    }

    function saySomethingElse(string newSaying) public  returns(bool success) {
        saySomething = newSaying;
        return true;
    }

}

After deploying, to get the saySomething variable.

print(m_con.functions.speack.call())

And to set a new message.

tx_hash = m_con.functions.saySomethingElse("Not Hello World").transact()
tx_receipt = CI.w3.eth.waitForTransactionReceipt(tx_hash)

Pipeline

  • BUG: Fix the start of an already created node
  • TEST:Connection from different device

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python_geth-1.7.54.tar.gz (10.1 kB view details)

Uploaded Source

Built Distribution

python_geth-1.7.54-py3-none-any.whl (11.9 kB view details)

Uploaded Python 3

File details

Details for the file python_geth-1.7.54.tar.gz.

File metadata

  • Download URL: python_geth-1.7.54.tar.gz
  • Upload date:
  • Size: 10.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for python_geth-1.7.54.tar.gz
Algorithm Hash digest
SHA256 59d9a51a1a718b1687f34745e02635b4e5d8cffadcbb87c43d15de3b7fc7f72e
MD5 062727f15fee8c7dc3231c2a687b4037
BLAKE2b-256 0dfcd68fe4decc567ad93ab4d58da44aebe48b268f0b97f68addd618ca0b1088

See more details on using hashes here.

File details

Details for the file python_geth-1.7.54-py3-none-any.whl.

File metadata

  • Download URL: python_geth-1.7.54-py3-none-any.whl
  • Upload date:
  • Size: 11.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for python_geth-1.7.54-py3-none-any.whl
Algorithm Hash digest
SHA256 dad3cea8a88dc1ab603ca9080fb4d3345862294650168107da90eca3d9be07f5
MD5 16f55495ae52fc0bab0f4d57cda7498c
BLAKE2b-256 4459a0cb4041f7b7899ef837ae8178a023b035a09c07a7b0122482906fde2a7b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page