summaryrefslogtreecommitdiff
path: root/docs/api-usage.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/api-usage.rst')
-rw-r--r--docs/api-usage.rst11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/api-usage.rst b/docs/api-usage.rst
index 66e5887..a544bdd 100644
--- a/docs/api-usage.rst
+++ b/docs/api-usage.rst
@@ -179,6 +179,17 @@ resources. For example:
project = gl.projects.get(1)
project.star()
+You can print a Gitlab Object. For example:
+
+.. code-block:: python
+
+ project = gl.projects.get(1)
+ print(project)
+ # Or in a prettier format. These two are equivalent.
+ print(project.pformat())
+ project.pprint()
+
+
Base types
==========