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
|
Received: from sog-mx-2.v43.ch3.sourceforge.com ([172.29.43.192]
helo=mx.sourceforge.net)
by sfs-ml-2.v29.ch3.sourceforge.com with esmtp (Exim 4.76)
(envelope-from <jgarzik@exmulti.com>) id 1UDnpz-0006lH-5q
for bitcoin-development@lists.sourceforge.net;
Fri, 08 Mar 2013 03:19:15 +0000
X-ACL-Warn:
Received: from mail-pb0-f44.google.com ([209.85.160.44])
by sog-mx-2.v43.ch3.sourceforge.com with esmtps (TLSv1:RC4-SHA:128)
(Exim 4.76) id 1UDnpv-0005Fd-Ec
for bitcoin-development@lists.sourceforge.net;
Fri, 08 Mar 2013 03:19:15 +0000
Received: by mail-pb0-f44.google.com with SMTP id wz12so854629pbc.17
for <bitcoin-development@lists.sourceforge.net>;
Thu, 07 Mar 2013 19:19:05 -0800 (PST)
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=google.com; s=20120113;
h=mime-version:x-received:x-originating-ip:date:message-id:subject
:from:to:content-type:x-gm-message-state;
bh=CHp9C7tADjrig4aW5NItmv94JWKcGCKYt8UncTbI4mo=;
b=b2mlxFetTVyXOyr/BNScTABKSckZJEemrk8/5OYafgUVuicHSflF0fJ0N85CrGzqwX
Sugffdmhfg6O7WrqlMJsFCkwc7a9soJajKo39U4rwOdgMZKwx70hFOyzbDDFQYLeF/NG
wFiKeBjZK6x/cyI3vVlzjPfcVoafBvd7QPpeKCGblt+sgKtW7bprDFOvOQWo76rvdmYc
uUqR4ZweynEVs7jOuWNbcWNz30IeVKcT5Jtk98pPryfOZEC9XjMzpo3B4m8iE/9Q7Kj2
6sIAfOJKKgviAGGCxd5HY/nMuA6N48hl69WdqsG6KHKS4mbqeCCiKdXhQ3sMLsLPFkG2
rC2g==
MIME-Version: 1.0
X-Received: by 10.68.138.225 with SMTP id qt1mr1016336pbb.82.1362712745511;
Thu, 07 Mar 2013 19:19:05 -0800 (PST)
Received: by 10.68.146.133 with HTTP; Thu, 7 Mar 2013 19:19:05 -0800 (PST)
X-Originating-IP: [2001:4830:1603:2:21c:c0ff:fe79:c8c2]
Date: Thu, 7 Mar 2013 22:19:05 -0500
Message-ID: <CA+8xBpcu6dEdvWNGS+rhCQsDfHh5eOD=nFi+6BFO0Coi0toRUw@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: ALoCoQl/9eiZCo+mglV+pVljcpsK/E4DJKT55EXZ4MDoku2ejHIXnQFhA5gWRXAH/ZglUlo2T6GZ
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: 1UDnpv-0005Fd-Ec
Subject: [Bitcoin-development] python-bitcoinlib: Comprehensive bitcoin
library for python
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: Fri, 08 Mar 2013 03:19:15 -0000
GitHub URL: https://github.com/jgarzik/python-bitcoinlib
Repository: git://github.com/jgarzik/python-bitcoinlib.git
The python library for pynode has matured sufficiently to have a home
of its own. The python-bitcoinlib project attempts to present a
lightweight, modular, a la carte interface to bitcoin data structures
and network protocols.
Features:
* Easy object interface to all bitcoin core data structures: block,
transaction, addresses, ...
* Full transaction script engine
* Fully verifies main and testnet block chains (via pynode)
* ECDSA verification (OpenSSL wrapper)
* Object interface to all known network messages
* Binary encoding/decoding (serialization) for full bitcoin
protocol interoperability
* Passes many of the tests shipped with the bitcoin reference
client (bitcoind/Bitcoin-Qt)
Like pynode, this library is currently a developer-only release, not
recommended for highly secure production sites.
Pull requests, comments, questions and donations always welcome.
--
Jeff Garzik
exMULTI, Inc.
jgarzik@exmulti.com
|