I am trying to list the project list by names not by ID#. This goes the same with listing the groups by name not by ID#.
I tried running some python-gitlab codes with python 2.7 version but I only get the ID#.
projects = gl.projects.list()
groups = gl.groups.list()
These two lines only gives the ID# of the projects and the groups but that's not what I want. What I want to know if it's possible to only get the name listed in groups and projects. Is that possible?