-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
37 lines (26 loc) · 931 Bytes
/
main.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
from tracker import Tracker
import csv
from rich.console import Console
from logger import *
console = Console()
def menu():
logger = logging()
console.print("Select an option")
print("")
print("")
console.print("1. Start trackers")
console.print("2. exit")
option = input(">")
match option:
case '1':
logger.success("Tracker starting")
while True:
with open('wallets.csv','r') as csvFile:
read_file = csv.DictReader(csvFile)
for row in read_file:
Tracker(name =row['name'],address =row['address'],api_key = "ENTER API KEY").fetch_transactions()
case "2":
print("Exiting")
exit()
if __name__ == "__main__":
menu = menu()