1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-11 16:36:14 +01:00

Make examples python3 compliant

This commit is contained in:
Wolfgang Engel 2023-03-13 16:19:15 +01:00
parent c99502998b
commit f9b708408c

View File

@ -51,21 +51,21 @@ List all the projects and packages
This will show all the projects on the remote |obs|: This will show all the projects on the remote |obs|:
>>> for prj in osc.core.meta_get_project_list(apiurl, deleted=False): >>> for prj in osc.core.meta_get_project_list(apiurl, deleted=False):
print prj print(prj)
A project has **repositories** associated with it (eg. linux distributions): A project has **repositories** associated with it (eg. linux distributions):
>>> prj = 'home:cavallo71:opt-python-interpreters' >>> prj = 'home:cavallo71:opt-python-interpreters'
>>> for repo in osc.core.get_repos_of_project(apiurl, prj): >>> for repo in osc.core.get_repos_of_project(apiurl, prj):
print repo print(repo)
A project contains packages and to list them all: A project contains packages and to list them all:
>>> prj = 'home:cavallo71:opt-python-interpreters' >>> prj = 'home:cavallo71:opt-python-interpreters'
>>> for pkg in osc.core.meta_get_packagelist(apiurl, prj): >>> for pkg in osc.core.meta_get_packagelist(apiurl, prj):
print pkg print(pkg)
Add a package to an existing project Add a package to an existing project