# Copyright (c) 2025 Kim Jarvis TPF Software Services S.A. kim.jarvis@tpfsystems.com # This software is licensed under the MIT License. See the LICENSE file for details.#
[docs]classGet_Date:""" Returns the current datetime on the server. **Examples:** .. code:: python yield Get_Date() """defexecute(self):fromreemote.operations.server.shellimportShellISO_DATE_FORMAT="%Y-%m-%dT%H:%M:%S%z"r0=yieldShell(f"date +'{ISO_DATE_FORMAT}'")