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.

load.py 238 B

123456789101112
  1. import json
  2. DMP = ""
  3. def get_dmp():
  4. with open('../../../dmp.json') as f:
  5. DMP = json.load(f)
  6. return DMP
  7. def get_dmp_from_outsystem(DMP_PATH):
  8. with open(DMP_PATH) as f:
  9. DMP = json.load(f)
  10. return DMP