We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b02b95 commit 9c5b8d5Copy full SHA for 9c5b8d5
docs/gl_objects/projects.rst
@@ -289,6 +289,14 @@ generated by GitLab you need to:
289
with open('/tmp/export.tgz', 'wb') as f:
290
export.download(streamed=True, action=f.write)
291
292
+You can also get the status of an existing export, regardless of
293
+whether it was created via the API or the Web UI::
294
+
295
+ project = gl.projects.get(my_project)
296
297
+ # Gets the current export status
298
+ export = project.exports.get()
299
300
Import the project into the current user's namespace::
301
302
with open('/tmp/export.tgz', 'rb') as f:
0 commit comments