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.

info.py 385 B

123456789101112131415
  1. import os
  2. import json
  3. here = os.path.dirname(__file__)
  4. with open(os.path.join(here, "info.json")) as infofile:
  5. infodict = json.load(infofile)
  6. VERSION = infodict["VERSION"]
  7. FORMAT_VERSION = infodict["FORMAT_VERSION"]
  8. AUTHOR = infodict["AUTHOR"]
  9. COPYRIGHT = infodict["COPYRIGHT"]
  10. CONTACT = infodict["CONTACT"]
  11. HOMEPAGE = infodict["HOMEPAGE"]
  12. CLASSIFIERS = infodict["CLASSIFIERS"]