MaxMinesAPIPython
Class Python để dễ dàng sử dụng HTTP API của MaxMines
Để biết thêm chi tiết về HTTP API của MaxMines vui lòng truy cập tài liệu MaxMines HTTP API
Ví dụ (GET)
from maxminesapipython.client import MaxMinesPython
secret_key = ""
client = MaxMinesPython(secret_key)
client.get("/stats/site")
Ví dụ (POST)
from maxminesapipython.client import MaxMinesPython
secret_key = ""
client = MaxMinesPython(secret_key)
client.post("/links/create", {"url": "https://example.com", "hashes": 1024})