Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

utils.py 330 B

123456789101112131415
  1. from contextlib import contextmanager
  2. from datalad_gooey.app import GooeyApp
  3. @contextmanager
  4. def gooey_app(path):
  5. # TODO: This should probably become a fixture
  6. try:
  7. gooey = GooeyApp(path)
  8. gooey.main_window.show()
  9. yield gooey
  10. finally:
  11. if gooey is not None:
  12. gooey.deinit()