Telemetry¶
A simple pre-configured --telemetry/--no-telemetry option flag, that is respecting the proposed DO_NOT_TRACK environment variable as a unified standard to opt-out of telemetry for TUI/console apps.
It does nothing else.
click_extra.telemetry API¶
classDiagram
ExtraOption <|-- TelemetryOption
Telemetry utilities.
- class click_extra.telemetry.TelemetryOption(param_decls=None, default=False, expose_value=False, envvar=None, show_envvar=True, help='Collect telemetry and usage data.', **kwargs)[source]
Bases:
ExtraOptionA pre-configured
--telemetry/--no-telemetryoption flag.Respects the proposed DO_NOT_TRACK environment variable as a unified standard to opt-out of telemetry for TUI/console apps: a truthy
DO_NOT_TRACKforces telemetry off, overriding the user-defined environment variables, the auto-generated values, and configuration files. Only an explicit--telemetryon the command line outranks it.The resolved value is stored in
ctx.meta[click_extra.context.TELEMETRY], aligning with every other Click Extra optionās per-invocation context-meta storage pattern.See also
- set_telemetry(ctx, param, value)[source]
Reconcile the flag with
DO_NOT_TRACKand store the result onctx.meta.An explicit
--telemetry/--no-telemetryon the command line wins. Otherwise a truthyDO_NOT_TRACK(bare presence, or any value not parseable as false, in the permissive spirit of the color environment variables) forces telemetry off. Read viaclick_extra.context.get(ctx, click_extra.context.TELEMETRY).Note
DO_NOT_TRACKis read here rather than wired through the optionāsenvvar: Clickās environment plumbing feeds the raw value straight to the boolean flag, soDO_NOT_TRACK=1would enable telemetry, inverting the convention. Reading it manually keeps the opt-out meaning, mirroring howColorOptionreadsNO_COLORand friends.- Return type: