mirror of
https://github.com/goharbor/harbor.git
synced 2024-10-31 23:59:32 +01:00
2.3 KiB
2.3 KiB
Introduction
harbor is the enterprise-class registry server for docker distribution.
harbor-py is the native and compatible python SDK for harbor. The supported APIs are list below.
- Projects APIs
- Get projects
- Create project
- Check project exist
- Set project publicity
- Get project id from name
- Get project access logs
- Get project member
- Get project and user member
- Users APIs
- Repositories APIs
- Others APIs
Installation
pip install harbor-py
Usage
from harborclient import harborclient
host = "127.0.0.1"
user = "admin"
password = "Harbor12345"
client = harborclient.HarborClient(host, user, password)
client.get_projects()
client.get_users()
client.get_statistics()
client.get_top_accessed_repositories()
client.search("library")
For more usage, please refer to the examples.
Contribution
If you have any suggestion, feel free to submit issues or send pull-requests for harbor-py
.
Publish harbor-py
package to pypi server with the following commands.
python setup.py register -r pypi
python setup.py sdist upload -r pypi