pythongeth如何使用?

2023-12-14 15:59:37网络知识悟空

python中geth如何使用?

1、安装命令

pipinstallpy-geth

2、快速启动运行连接到mainnet的geth

>>>fromgethimportLiveGethProcess

>>>geth=LiveGethProcess()

>>>geth.start()

3、或者是用于测试的私人本地区块链。

>>>fromgethimportDevGethProcess

>>>geth=DevGethProcess('testing')

>>>geth.start()

默认情况下,DevGethProcess在geth使用的默认datadir设置测试链。如果要更改这些测试链的位置,可以指定替代base_dir。

以上就是python中geth的使用,希望能对大家有所帮助。如果想要了解更多Python相关知识,请关注IT培训机构:筋斗云。

发表评论: