Do It Yourself - Seluj78/IntraPy GitHub Wiki
If you'd prefer to do it yourself, and experiment, you can still use the functions placed in the class IntraPy
from IntraPy import IntraPy
api = IntraPy.IntraPy()
ret = api.api_get_single("/v2/ENDPOINT")
print(ret)
print(ret.content)
The first print will simply print the HTTP code given by the api. For example, an unknown endpoint will return <Response [404]>
.
Then print(ret.content)
will print the full content, in a json form, returned by 42's API.