Skip to content

Commit

Permalink
moving to git :)
Browse files Browse the repository at this point in the history
  • Loading branch information
elis committed Jul 24, 2011
1 parent e0aa47f commit 1a1e6ee
Show file tree
Hide file tree
Showing 135 changed files with 19,271 additions and 0 deletions.
372 changes: 372 additions & 0 deletions client/ChangeLog.txt

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions client/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
web.py is in the public domain; it can be used for whatever purpose with absolutely no restrictions.

CherryPy WSGI server that is included in the web.py as web.wsgiserver is licensed under CherryPy License. See web/wsgiserver/LICENSE.txt for more details.

47 changes: 47 additions & 0 deletions client/bitcoin/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Copyright (c) 2010 Witchspace <witchspace81@gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
"""
bitcoin-python - Easy-to-use Bitcoin API client
"""
def connect_to_local():
"""
Connect to default bitcoin instance owned by this user, on this machine.
Returns a :class:`~bitcoin.connection.BitcoinConnection` object.
"""
from bitcoin.connection import BitcoinConnection
from bitcoin.config import read_default_config

cfg = read_default_config()
port = int(cfg.get('rpcport', '8332'))
rcpuser = cfg.get('rpcuser', '')

return BitcoinConnection(rcpuser,cfg['rpcpassword'],'localhost',port)

def connect_to_remote(user, password, host='localhost', port=8332):
"""
Connect to remote or alternative local bitcoin client instance.
Returns a :class:`~bitcoin.connection.BitcoinConnection` object.
"""
from bitcoin.connection import BitcoinConnection

return BitcoinConnection(user, password, host, port)

64 changes: 64 additions & 0 deletions client/bitcoin/config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# Copyright (c) 2010 Witchspace <witchspace81@gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
"""
Utilities for reading bitcoin configuration files.
"""
def read_config_file(filename):
"""
Read a simple ``'='``-delimited config file.
Raises :const:`IOError` if unable to open file, or :const:`ValueError`
if an parse error occurs.
"""
f = open(filename)
try:
cfg = {}
for line in f:
line = line.strip()
if line and not line.startswith("#"):
try:
(key, value) = line.split('=', 1)
cfg[key] = value
except ValueError:
pass # Happens when line has no '=', ignore
finally:
f.close()
return cfg

def read_default_config():
"""
Read bitcoin default configuration from the current user's home directory.
"""
import os, platform
home = os.getenv("HOME")

if not home:
raise IOError("Home directory not defined, don't know where to look for config file")

if platform.system() == "Darwin":
location = 'Library/Application Support/Bitcoin/bitcoin.conf'
else:
location = '.bitcoin/bitcoin.conf'

try:
return read_config_file(os.path.join(home, location))
except (IOError,ValueError):
pass # Cannot read config file, ignore


0 comments on commit 1a1e6ee

Please sign in to comment.