I have accessed a gitlab page using private_token.
I now have a Gitlab object.
>>> gl
<gitlab.Gitlab object at 0x011052F0>
How can I retrieve the page source content of the page I'm currently on? I can't find anything in the documentation... :(
I've used this command print(str(gl.__dict__).replace(',','\n'))
to get the attributes of the Gitlab object, but there is nothing helpful there that I can see.
There doesn't seem to be much on SO around Gitlab. Any help would be appreciated.