It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
#!/usr/bin/env python
import simplejson
import urllib
import urllib2
import urlparse
market_depth_url = "http://mtgox.com/code/data/getDepth.php"
ticker_data_url = "http://mtgox.com/code/data/ticker.php"
recent_trades_url = "http://mtgox.com/code/data/getTrades.php"
current_balance_url = "https://mtgox.com/code/getFunds.php?name=blah&pass=blah"
buy_order_url = "https://mtgox.com/code/buyBTC.php?name=blah&pass=blah&amount=number&price=number"
sell_order_url = "https://mtgox.com/code/sellBTC.php?name=blah&pass=blah&amount=number&price=number"
open_order_url = "https://mtgox.com/code/getOrders.php?name=blah&pass=blah"
cancel_order_url = "https://mtgox.com/code/cancelOrder.php?name=blah&pass=blah&oid=number&type=number"
send_btc_url = "https://mtgox.com/code/withdraw.php?name=blah&pass=blah&group1=BTC&btca=bitcoin_address_to_send_to&amount=number"
checkout_url = "https://mtgox.com/merch/checkout"
verify_transaction_url = "https://mtgox.com/code/gateway/checkTxn.php"
def getBitcoinSellValue(quantity):
data = simplejson.load(urllib2.urlopen(market_depth_url))
data['bids'].sort(reverse=True)
market_USD_value = 0
total_bitcoins = 0
for i in data['bids']:
market_USD_value = market_USD_value + ((i[0]) * (i[1]))
total_bitcoins = total_bitcoins + (i[1])
if total_bitcoins >= quantity:
bitcoin_value = market_USD_value / total_bitcoins
return bitcoin_value
def getBitcoinBuyValue(quantity):
data = simplejson.load(urllib2.urlopen(market_depth_url))
data['asks'].sort()
market_USD_value = 0
total_bitcoins = 0
for i in data['asks']:
market_USD_value = market_USD_value + ((i[0]) * (i[1]))
total_bitcoins = total_bitcoins + (i[1])
if total_bitcoins >= quantity:
bitcoin_value = market_USD_value / total_bitcoins
return bitcoin_value
def createSellOrder(username, password, amount, price):
format_url = urlparse.urlparse(sell_order_url)
new_url = format_url.scheme + ":" + "//" + format_url.netloc + format_url.path
query = urlparse.parse_qs(format_url.query)
query['price'] = price
query['amount'] = amount
query['name'] = username
query['pass'] = password
f = urllib.urlopen(new_url, urllib.urlencode(query))
return f.read()
def createBuyOrder(username, password, amount, price):
format_url = urlparse.urlparse(buy_order_url)
new_url = format_url.scheme + ":" + "//" + format_url.netloc + format_url.path
query = urlparse.parse_qs(format_url.query)
query['price'] = price
query['amount'] = amount
query['name'] = username
query['pass'] = password
f = urllib.urlopen(new_url, urllib.urlencode(query))
return f.read()
def getBalance(username, password):
format_url = urlparse.urlparse(current_balance_url)
new_url = format_url.scheme + ":" + "//" + format_url.netloc + format_url.path
query = urlparse.parse_qs(format_url.query)
query['name'] = username
query['pass'] = password
f = urllib.urlopen(new_url, urllib.urlencode(query))
return f.read()
def getOpenOrders(username, password):
format_url = urlparse.urlparse(open_order_url)
new_url = format_url.scheme + ":" + "//" + format_url.netloc + format_url.path
query = urlparse.parse_qs(format_url.query)
query['name'] = username
query['pass'] = password
f = urllib.urlopen(new_url, urllib.urlencode(query))
return f.read()
def cancelOrder(username, password, orderid, type):
format_url = urlparse.urlparse(cancel_order_url)
new_url = format_url.scheme + ":" + "//" + format_url.netloc + format_url.path
query = urlparse.parse_qs(format_url.query)
query['oid'] = orderid
query['type'] = type
query['name'] = username
query['pass'] = password
f = urllib.urlopen(new_url, urllib.urlencode(query))
return f.read()
def sendBTC(username, password, destination, amount):
format_url = urlparse.urlparse(send_btc_url)
new_url = format_url.scheme + ":" + "//" + format_url.netloc + format_url.path
query = urlparse.parse_qs(format_url.query)
query['btca'] = destination
query['amount'] = amount
query['name'] = username
query['pass'] = password
query['group1'] = 'BTC'
f = urllib.urlopen(new_url, urllib.urlencode(query))
return f.read()
def checkout(notify_url, username, currency_code, amount, item_name, custom, return_url):
format_url = urlparse.urlparse(checkout_url)
new_url = format_url.scheme + ":" + "//" + format_url.netloc + format_url.path
query = urlparse.parse_qs(format_url.query)
query['notify_url'] = notify_url
query['business'] = username
query['currency_code'] = currency_code
query['amount'] = amount
query['item_name'] = item_name
query['custom'] = custom
query['return'] = return_url
f = urllib.urlopen(new_url, urllib.urlencode(query))
return f.read()
def receiveTransaction(txn_id, payer_username, currency_code, amount, custom):
{
}
def verifyTransaction(txn_id, merchID, amount):
format_url = urlparse.urlparse(verify_transaction_url)
new_url = format_url.scheme + ":" + "//" + format_url.netloc + format_url.path
query = urlparse.parse_qs(format_url.query)
query['txn_id'] = txn_id
query['amount'] = amount
query['merchID'] = merchID
f = urllib.urlopen(new_url, urllib.urlencode(query))
return f.read()