mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-11-08 18:03:13 +00:00
13 lines
289 B
Python
13 lines
289 B
Python
#!/usr/bin/env python3
|
|
|
|
import requests
|
|
|
|
miner = ""
|
|
|
|
data = requests.get(f"https://api.ethermine.org/miner/{miner}/dashboard").json()['data']['statistics']
|
|
data = data[-1]
|
|
current_hash_rate = data["currentHashrate"]
|
|
currentMHs = round(current_hash_rate/1e6, 1)
|
|
|
|
print(f"{currentMHs}MH/s")
|