1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-21 17:56:19 +02:00

Merge pull request #1276 from wengel/doc-python3

Make examples python3 compliant
This commit is contained in:
Daniel Mach 2023-03-14 10:55:12 +01:00 committed by GitHub
commit 16bf113f75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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