cloup.types¶
Parameter types and “shortcuts” to create commonly used types.
Functions¶
|
Shortcut for |
|
Shortcut for |
|
Shortcut for |
Contents¶
-
cloup.types.path(path_type=pathlib.Path, exists=False, file_okay=True, dir_okay=True, writable=False, readable=True, resolve_path=False, allow_dash=False)[source]¶ Shortcut for
click.Pathwithpath_type=pathlib.Path.
-
cloup.types.dir_path(path_type=pathlib.Path, exists=False, writable=False, readable=True, resolve_path=False, allow_dash=False)[source]¶ Shortcut for
click.Pathwithfile_okay=False, path_type=pathlib.Path.
-
cloup.types.file_path(path_type=pathlib.Path, exists=False, writable=False, readable=True, resolve_path=False, allow_dash=False)[source]¶ Shortcut for
click.Pathwithdir_okay=False, path_type=pathlib.Path.