1
0
mirror of https://github.com/goharbor/harbor.git synced 2025-04-09 21:46:56 +02:00
harbor/contrib/sdk/harbor-py/examples/get_statistics.py
2016-07-26 00:19:30 +08:00

14 lines
245 B
Python
Executable File

#!/usr/bin/env python
import sys
sys.path.append("../")
from harborclient import harborclient
host = "127.0.0.1"
user = "admin"
password = "Harbor12345"
client = harborclient.HarborClient(host, user, password)
print(client.get_statistics())