for instance the call gl = gitlab.Gitlab('http://192.168.2.175', private_token=run_args['my_token'])
projects = gl.projects.list()
for project in projects:
print(project)
produces output that cannot be processed as json. What is the process for parsing this information or should i just used standard rest requests and abandon python-gitlab?
<class 'gitlab.v4.objects.Project'> => {u'lfs_enabled': True, u'forks_count': 0, u'autoclose_referenced_issues': True, ... u'avatar_url': None, u'auto_cancel_pending_pipelines': u'enabled', u'jobs_enabled': True}
Here is the answer for which I was looking. The results are a class dictionary: projects = gl.projects.list(search='autobuild') for project in projects: for item in project.dict['_attrs']: print item
This produces the list of variables pertinent to the project.