system · Command reference
qzx getToday
What it does
Displays detailed information about the current date and time
Canonical command: getToday
Accepted aliases: WonderToday, today, now, datetime, fecha
Case-sensitive: no
Included in the published package
Available in PyPI 0.2.2.0.2. This page documents the 0.2.2.0.2 alpha development checkout.
Safety and effects
Read-only under the current classification
No documented dry-run parameter
No native program invocation in the current classification
No documented network use
No inherent elevation requirement
This safety classification was reviewed against implementation digest sha256:b2ac33e92a7f0e31d6fa9872fd55d5aa297e96c890ac9daabc2d1a1588dadde0 on 2026-07-24.
Exact syntax
qzx getToday [format] --jsonParameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| format | str | No | "full" | Output format (full, simple, or iso) |
Input examples
qzx WonderTodayDisplay full date and time information
qzx WonderToday simpleDisplay date and time in a simple format
qzx WonderToday isoDisplay date and time in ISO format
For the complete structured payload, add --json: qzx getToday [format] --json
Representative output example
This illustrative JSON is derived from the current implementation-backed result contract. It shows what the command can return without claiming a recorded execution; values vary with inputs, host, permissions, and optional tools.
Example command: qzx WonderToday --json
{
"success": true,
"message": "Displays detailed information about the current date and time. In this illustrative example, the command completed successfully.",
"date": {
"year": "Example value",
"month": "Example value",
"month_name": "Example value",
"day": "Example value",
"day_of_week": "Example value",
"day_of_year": "Example value",
"week_of_year": "Example value",
"quarter": "Example value",
"is_leap_year": true
},
"iso_format": "Example value",
"output": "Command completed successfully with structured details.",
"time": {
"hour": "Example value",
"hour_12": "Example value",
"minute": "Example value",
"second": "Example value",
"microsecond": "Example value",
"am_pm": "Example value",
"timezone": "Example value",
"timezone_offset": "Example value"
},
"timestamp": "Example value"
}View the JSON result contract
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"required": [
"success",
"message"
],
"properties": {
"success": {
"type": "boolean"
},
"message": {
"type": "string"
},
"date": {
"type": "object",
"properties": {
"year": [],
"month": [],
"month_name": [],
"day": [],
"day_of_week": [],
"day_of_year": [],
"week_of_year": [],
"quarter": [],
"is_leap_year": []
},
"additionalProperties": true
},
"error": [],
"iso_format": [],
"output": [],
"time": {
"type": "object",
"properties": {
"hour": [],
"hour_12": [],
"minute": [],
"second": [],
"microsecond": [],
"am_pm": [],
"timezone": [],
"timezone_offset": []
},
"additionalProperties": true
},
"timestamp": []
},
"additionalProperties": true
}Errors and limits
The public contract requires success=false and a descriptive message on failure. This catalog does not yet declare a command-specific error taxonomy; inspect the result and do not invent error codes.
QZX is alpha software. Optional dependencies, permissions, and host capabilities can change the result.
Evidence workflow: ready for deterministic automated capture.
Evidence and provenance
- Implementation
- src/qzx/commands/system/get_today.py
- Tests
- No command-specific test file with the same module name was found; this does not prove that all coverage is absent.
- Documentation channel
- Development documentation 0.2.2.0.2 · main · sha256:319b16857a87636ebc3b89734cc040a737bb56194464fca33ce73bdae2043096
- Availability
- 0.2.2.0.2 or earlier
Keep exploring
Related commands
These commands also belong to the system category. Compare them to choose the operation that best fits your task.
qzx getStartupProgramsLists all startup programs configured to run on system boot or user loginqzx inspectPortChecks if a port is in use, lists details of the process using it, and can optionally terminate itqzx getSmartValuesRetrieves disk health information using S.M.A.R.T. technologyqzx isAdminChecks if the current user has administrative privileges