千家信息网

python怎么实现bitcoin转账api

发表于:2025-01-23 作者:千家信息网编辑
千家信息网最后更新 2025年01月23日,这篇文章主要讲解了"python怎么实现bitcoin转账api",文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习"python怎么实现bitcoin转账a
千家信息网最后更新 2025年01月23日python怎么实现bitcoin转账api

这篇文章主要讲解了"python怎么实现bitcoin转账api",文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习"python怎么实现bitcoin转账api"吧!

下载并安装OpenBazaar-Server

安装虚拟环境

$ pip install virtualenv

$ cd /Users/shijun/Desktop/openSourceProject/OpenBazaar-Server-master

创建虚拟环境

$ virtualenv pytest --python=python2.7 --no-site-packages

激活虚拟环境

$ source pytest/bin/activate

(pytest) shijundeMacBook-Pro:OpenBazaar-Server-master shijun$

安装

$ sudo pip install -r requirements.txt

问题:安装过程遇到超时,继续安装

问题:ImportError: No module named requests

解决:$ pip install requests

测试

$ python openbazaard.py start --help

启动服务

$ python openbazaard.py start -a 0.0.0.0

________ __________

\_____ \ ______ ____ ____\______ \_____ _____________ _____ _______

/ | \\____ \_/ __ \ / \| | _/\__ \ \___ /\__ \ \__ \\_ __ \

/ | \ |_> > ___/| | \ | \ / __ \_/ / / __ \_/ __ \| | \/

\_______ / __/ \___ >___| /______ /(____ /_____ \(____ (____ /__|

\/|__| \/ \/ \/ \/ \/ \/ \/

OpenBazaar Server 0.2.6 starting...

2018-07-02 14:07:59+0800 [Server] [ERROR] failed to query seed: Signature was forged or corrupt

2018-07-02 14:07:59+0800 [Server] [ERROR] failed to query seed: [Errno 8] nodename nor servname provided, or not known

2018-07-02 14:07:59+0800 [Server] [WARNING] no known neighbors, so not writing to cache.

2018-07-02 14:08:09+0800 [Server] [WARNING] no known neighbors, so not writing to cache.

2018-07-02 14:08:09+0800 [-] [CRITICAL] Libbitcoin server offline

解决:$ brew install libbitcoin-server

$ cd /usr/local/Cellar/libbitcoin-server/3.5.0_2/bin

$ bs --initchain

06:37:04.700459 INFO [server] ================= startup ==================

06:37:04.700503 WARNING [server] ================= startup ==================

06:37:04.700646 ERROR [server] ================= startup ==================

06:37:04.700682 FATAL [server] ================= startup ==================

06:37:04.700717 INFO [server] Using config file: "/usr/local/Cellar/libbitcoin-server/3.5.0_2/etc/libbitcoin/bs.cfg"

06:37:04.700818 INFO [server] Please wait while initializing "blockchain" directory...

06:37:11.586594 INFO [server] Completed initialization.

运行服务

$ ./bs

06:45:52.430671 INFO [server] ================= startup ==================

06:45:52.430713 WARNING [server] ================= startup ==================

06:45:52.430849 ERROR [server] ================= startup ==================

06:45:52.430895 FATAL [server] ================= startup ==================

06:45:52.430923 INFO [server] Using config file: "/usr/local/Cellar/libbitcoin-server/3.5.0_2/etc/libbitcoin/bs.cfg"

06:45:52.430949 INFO [server] Please wait while the server is starting...

06:45:52.432351 INFO [network] Starting manual session.

06:45:52.432685 INFO [server] Seeding is complete.

06:45:52.433524 INFO [node] Node start height is (0).

06:45:52.435284 INFO [network] Not configured for accepting incoming connections.

06:45:52.435363 INFO [network] Starting outbound session.

06:45:52.442370 INFO [server] Bound public query service to tcp://*:9091

06:45:52.444527 INFO [server] Bound public heartbeat service to tcp://*:9092

06:45:52.444928 INFO [server] Bound public block service to tcp://*:9093

06:45:52.445332 INFO [server] Bound public transaction service to tcp://*:9094

06:45:52.445387 INFO [server] Server is started.

06:45:52.503015 INFO [network] Connected outbound channel [218.75.158.221:8333] (1)

Segmentation fault: 11

$ python openbazaard.py start --testnet
$ python openbazaard.py start -a 0.0.0.0

========================

You are using an outdated and deprecated version of OpenBazaar. The current server is located here:

https://github.com/OpenBazaar/openbazaar-go

Unless you want to install from source, I highly recommend downloading the installer from our main website:

https://www.openbazaar.org/download/

========================

$ brew install git

$ brew install go

$ git --version

git version 2.18.0

$ go version

go version go1.10.1 darwin/amd64

$ cd /Users/shijun/Desktop/openSourceProject/openbazaar-go-master

$ go run openbazaard.go start

cannot find package "github.com/OpenBazaar/openbazaar-go/cmd" in any of:

$ go get github.com/OpenBazaar/openbazaar-go

cannot find package "github.com/op/go-logging" in any of:

$ go get github.com/op/go-logging

cannot find package "github.com/jessevdk/go-flags" in any of:

$ go get github.com/jessevdk/go-flags

cannot find package "github.com/ipfs/go-ipfs/repo/fsrepo/lock" in any of:

$ go get -u -d github.com/ipfs/go-ipfs

感谢各位的阅读,以上就是"python怎么实现bitcoin转账api"的内容了,经过本文的学习后,相信大家对python怎么实现bitcoin转账api这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是,小编将为大家推送更多相关知识点的文章,欢迎关注!

0