-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheth.py
144 lines (96 loc) · 3.31 KB
/
eth.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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
import requests
import os
import sys
from datetime import datetime
"""
This is a simple script that allows you to check on your Ethereum Stash via Terminal. Saves you having to go online!
Be sure to enter your wallet address in the variable entitled url
Be sure to enter the total amount you have invested in the variable entitled investment_amount. This should be in integer/float format and NOT a string
I am assuming that you have all relevant packages installed ahead of time.
required libraries:
- requests
- os
- sys
- datetime
Usage:
This script contains python 3.6 syntax
Go to terminal and type python3 eth.py
Follow on screen instructions.
Let me know if you spot any errors or have comments/suggestions for improvement! This was my first attempt!
If you wish to tip me with Ethereum, please send ETH to: 0x959aA35f8fa56A54E9984EaEE08BDa583C82C0e0
"""
CONSTANT = 1000000000000000000
url = "https://api.etherscan.io/api?module=account&action=balance&address=INSERT YOUR WALLET ADDRESS HERE&tag=latest"
investment_amount = #TYPE TOTAL AMOUNT YOU HAVE INVESTED SO FAR HERE IN NUMBERS
buy_price = float(requests.get('https://api.coinbase.com/v2/prices/ETH-USD/buy')
.json()['data']['amount'])
sell_price = float(requests.get('https://api.coinbase.com/v2/prices/ETH-USD/sell')
.json()['data']['amount'])
eth_stash = int(requests.get(url).json()['result'])/CONSTANT
current_valuation = sell_price * eth_stash
return_percentage = ((current_valuation-investment_amount)/(investment_amount))*100
def get_info():
print()
print("-------------Coinbase Info-------------")
print()
print(datetime.now().strftime("%d-%m-%Y %H:%M"))
print()
print("ETH stash: ", eth_stash, "ETH")
print()
print(f"The current buy price of 1 ETH is: ${buy_price}")
print()
print(f"The current sell price of 1 ETH is: ${sell_price}")
print()
print("Your current stock is worth: ${:,}".format(int(current_valuation)))
print()
print("Your current rate of return is: {0:.2f} %".format(return_percentage))
print()
def conversion(parameter_1, parameter_2):
amount = input(f"Please type in an {parameter_1} amount for conversion to {parameter_2} : ")
try:
float_amount = float(amount)
except ValueError:
print()
print("This is not a valid amount")
print()
conversion(parameter_1, parameter_2)
if parameter_1 == "ETH":
USD_value = sell_price * float_amount
print()
print(f"{float_amount} ETH is approx {USD_value} USD")
print()
if parameter_1 == "USD":
eth_value = float_amount/buy_price
print()
print(f"{float_amount} USD is approx {eth_value} ETH")
print()
question = input(f"""Would you like to perform another {parameter_1}-{parameter_2} conversion?
1. Yes
2. Switch to {parameter_2}-{parameter_1} conversion
Press any key to exit.
Option Selection: """)
if question == "1":
print()
conversion(parameter_1, parameter_2)
elif question == "2":
print()
conversion(parameter_2, parameter_1)
else:
os.system("clear")
sys.exit()
if __name__ == '__main__':
print()
get_info()
question = input('''What type of conversion would you like to do:
1. ETH to USD
2. USD to ETH
Press any key to exit.
Option Selection: ''')
print()
if question == "1":
conversion("ETH", "USD")
elif question == "2":
conversion("USD", "ETH")
else:
os.system("clear")
sys.exit()