# List owned projects
projects = gl.projects.owned()
but using that construct produces an AttributeError.
import gitlab
token = os.environ['TOKEN']
gl = gitlab.Gitlab('http://gitlab.com', private_token=token)
# This works but is not documented...
projects = gl.projects.list(owned=True)
# Documentation says to use this but it fails with
# AttributeError: 'ProjectManager' object has no attribute 'owned'
projects = gl.projects.owned()
The documentation at
https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html
give example code:
but using that construct produces an AttributeError.