harbor/contrib/sdk/harbor-py/examples/get_projects.py

16 lines
263 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)
# Get all projects
print(client.get_projects())