forked from james-see/python-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbitcoin-example-1.py
34 lines (33 loc) · 1.42 KB
/
bitcoin-example-1.py
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
#!/usr/bin/python3
# Author: James Campbell
# Date: 2015-11-22
# Date Updated: 2019-06-19
# What: Accesses the blockchain module and queries some data as example
import sys
from sys import exit
import datetime
from blockchain import blockexplorer
# example address test
address = blockexplorer.get_address("1SDude3hVWoAT2sFxy3JkH2VrcUXPM4PA")
if len(sys.argv) > 1: # you can pass a bitcoin address in from terminal
print(sys.argv[1])
address = blockexplorer.get_address(sys.argv[1])
print(address)
# final balance
print(f"\nFinal balance of wallet: {address.final_balance}") # add decimal after first
transactions = address.transactions
print(f"\nList of {len(transactions)} transactions: \n -----------------------------")
for trans in transactions:
print(
f"Ip address of relayed transaction: {trans.relayed_by}"
) # print ip address of the relayed transaction
print(f"Hash of the transaction: {trans.hash}") # hash of the transaction
print(f"Time of the transaction: {trans.time}") # time of the transaction
timestamp = trans.time
fixedtime = datetime.datetime.fromtimestamp(timestamp)
fixer = fixedtime.strftime("%Y-%m-%d %H:%M:%S")
print(f"Converted time: {fixedtime.strftime('%Y-%m-%d %H:%M:%S')}\n")
# inventory only works for transactions up to 1 hour old
# inv = blockexplorere.get_inventory_data(trans.hash)
# print('Time: %s Initial IP: %s' % (fixer, inv.initial_ip))
exit()