mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-01 08:09:59 +01:00
17 lines
296 B
Python
Executable File
17 lines
296 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 repositories
|
|
project_id = 1
|
|
print(client.get_repositories(project_id))
|