1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
Received: from sog-mx-2.v43.ch3.sourceforge.com ([172.29.43.192]
helo=mx.sourceforge.net)
by sfs-ml-3.v29.ch3.sourceforge.com with esmtp (Exim 4.76)
(envelope-from <jgarzik@exmulti.com>) id 1St1eN-0007Sy-Pb
for bitcoin-development@lists.sourceforge.net;
Sun, 22 Jul 2012 19:17:07 +0000
X-ACL-Warn:
Received: from mail-lb0-f175.google.com ([209.85.217.175])
by sog-mx-2.v43.ch3.sourceforge.com with esmtps (TLSv1:RC4-SHA:128)
(Exim 4.76) id 1St1eM-00009u-Lj
for bitcoin-development@lists.sourceforge.net;
Sun, 22 Jul 2012 19:17:07 +0000
Received: by lbol5 with SMTP id l5so7645713lbo.34
for <bitcoin-development@lists.sourceforge.net>;
Sun, 22 Jul 2012 12:16:59 -0700 (PDT)
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=google.com; s=20120113;
h=mime-version:x-originating-ip:date:message-id:subject:from:to
:content-type:x-gm-message-state;
bh=gSXpzwh4XOdiBOxUO+vK1Xmo7xt74TsQH72u44SoTas=;
b=pSt2+ZLK3GeIee1abwfWzQQ4DQ9FEDgSxjVioffc0LLBNNRQsKHk98h0NMo16qm+7U
IsKpr4ZzcftQbNU+fkbhWkuh+ocqF5OUxX5mwwgwOfA+tlynivt9MY+D0kWPzSVE/DXC
Y+xstA7le3WL+wbAjC6heBHCprCAa4i1nhDV9o5BPktSNF9TvhTPq4wlVb9awPGloFTA
hBgsFpL4D8oPICQlzBF1TT4Is5RX637fIKepihzSgM2F/+QXQwU9EXB8nEgQo+W+9FPQ
12At09g9gD5/M6I9anDi0o2yotOEI/2bvDD98IEML+HVvOWSrDbS88kUZk1HCDuvflN5
JM9g==
MIME-Version: 1.0
Received: by 10.152.103.11 with SMTP id fs11mr13875127lab.23.1342984619609;
Sun, 22 Jul 2012 12:16:59 -0700 (PDT)
Received: by 10.114.14.228 with HTTP; Sun, 22 Jul 2012 12:16:59 -0700 (PDT)
X-Originating-IP: [2001:4830:1603:2:21c:c0ff:fe79:c8c2]
Date: Sun, 22 Jul 2012 15:16:59 -0400
Message-ID: <CA+8xBpcxHUqQCjwnS5C0Or--mjo8jaNrbR5rjT=BBAT2r9Vs4g@mail.gmail.com>
From: Jeff Garzik <jgarzik@exmulti.com>
To: Bitcoin Development <bitcoin-development@lists.sourceforge.net>
Content-Type: text/plain; charset=ISO-8859-1
X-Gm-Message-State: ALoCoQm/X8pzRPDbaJpto2hZGXIm5K74ONIQCUOsoF/6J/5OJ+ilYwTsBFemQr8dvXD2UL+0dZIu
X-Spam-Score: 0.0 (/)
X-Spam-Report: Spam Filtering performed by mx.sourceforge.net.
See http://spamassassin.org/tag/ for more details.
X-Headers-End: 1St1eM-00009u-Lj
Subject: [Bitcoin-development] [ANN] pynode: Simple bitcoin P2P node
X-BeenThere: bitcoin-development@lists.sourceforge.net
X-Mailman-Version: 2.1.9
Precedence: list
List-Id: <bitcoin-development.lists.sourceforge.net>
List-Unsubscribe: <https://lists.sourceforge.net/lists/listinfo/bitcoin-development>,
<mailto:bitcoin-development-request@lists.sourceforge.net?subject=unsubscribe>
List-Archive: <http://sourceforge.net/mailarchive/forum.php?forum_name=bitcoin-development>
List-Post: <mailto:bitcoin-development@lists.sourceforge.net>
List-Help: <mailto:bitcoin-development-request@lists.sourceforge.net?subject=help>
List-Subscribe: <https://lists.sourceforge.net/lists/listinfo/bitcoin-development>,
<mailto:bitcoin-development-request@lists.sourceforge.net?subject=subscribe>
X-List-Received-Date: Sun, 22 Jul 2012 19:17:07 -0000
Github URL: https://github.com/jgarzik/pynode
pynode is a simple bitcoin P2P client, based on ArtForz' half-a-node,
which maintains a blockchain database and TX memory pool.
It is intended to be a useful base for another projects, such as
network monitoring nodes.
At present, it is mainly for developers and not end users. Here is
what pynode does NOT do:
* RPC
* key management (wallet)
* script verification
* chain re-org
Here are the limited things that pynode can do at present:
* Outgoing TCP connection to a single remote P2P node
* Initial blockchain download
* Maintain a transaction memory pool, with TX's removed as they are
confirmed in blocks
* Maintain an indexed blockchain database
Over time it will become more capable, but this is an alpha quality
release for developers at present.
Contributions welcome! It is intended to become a full, wallet-less
node over time (though if somebody wanted to contribute a wallet
module, that is OK too)
--
Jeff Garzik
exMULTI, Inc.
jgarzik@exmulti.com
|