class documentation

class DateTime(ParamType):

View In Hierarchy

The DateTime type converts date strings into datetime objects.

The format strings which are checked are configurable, but default to some common (non-timezone aware) ISO 8601 formats.

When specifying DateTime formats, you should only pass a list or a tuple. Other iterables, like generators, may lead to surprising results.

The format strings are processed using datetime.strptime, and this consequently defines the format strings which are allowed.

Parsing is tried using each format, in order, and the first format which parses successfully is used.

Parameters
formatsA list or tuple of date format strings, in the order in which they should be tried. Defaults to '%Y-%m-%d', '%Y-%m-%dT%H:%M:%S', '%Y-%m-%d %H:%M:%S'.
Method __init__ Undocumented
Method __repr__ Undocumented
Method ​_try​_to​_convert​_date Undocumented
Method convert Convert the value to the correct type. This is not called if the value is None (the missing value).
Method get​_metavar Returns the metavar default for this param if it provides one.
Method to​_info​_dict Gather information that could be useful for a tool generating user-facing documentation.
Class Variable name Undocumented
Instance Variable formats Undocumented

Inherited from ParamType:

Method __call__ Undocumented
Method fail Helper method to fail with an invalid value message.
Method get​_missing​_message Optionally might return extra information about a missing parameter.
Method shell​_complete No summary
Method split​_envvar​_value Given a value from an environment variable this splits it up into small chunks depending on the defined envvar list splitter.
Class Variable arity Undocumented
Class Variable envvar​_list​_splitter Undocumented
Class Variable is​_composite Undocumented
def __init__(self, formats=None):

Undocumented

Parameters
formats:t.Optional[t.Sequence[str]]Undocumented
def __repr__(self):

Undocumented

Returns
strUndocumented
def _try_to_convert_date(self, value, format):

Undocumented

Parameters
value:t.AnyUndocumented
format:strUndocumented
Returns
t.Optional[datetime]Undocumented
def convert(self, value, param, ctx):

Convert the value to the correct type. This is not called if the value is None (the missing value).

This must accept string values from the command line, as well as values that are already the correct type. It may also convert other compatible types.

The param and ctx arguments may be None in certain situations, such as when converting prompt input.

If the value cannot be converted, call fail with a descriptive message.

Parameters
value:t.AnyThe value to convert.
param:t.Optional[Parameter]The parameter that is using this type to convert its value. May be None.
ctx:t.Optional[Context]The current context that arrived at this value. May be None.
Returns
t.AnyUndocumented
def get_metavar(self, param):
Returns the metavar default for this param if it provides one.
Parameters
param:ParameterUndocumented
Returns
strUndocumented
def to_info_dict(self):

Gather information that could be useful for a tool generating user-facing documentation.

Use click.Context.to_info_dict to traverse the entire CLI structure.

New in version 8.0.
Returns
t.Dict[str, t.Any]Undocumented
name: str =

Undocumented

formats =

Undocumented