| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 | """Click is a simple Python module inspired by the stdlib optparse to makewriting command line scripts fun. Unlike other modules, it's basedaround a simple API that does not come with too much magic and iscomposable."""from .core import Argument as Argumentfrom .core import BaseCommand as BaseCommandfrom .core import Command as Commandfrom .core import CommandCollection as CommandCollectionfrom .core import Context as Contextfrom .core import Group as Groupfrom .core import MultiCommand as MultiCommandfrom .core import Option as Optionfrom .core import Parameter as Parameterfrom .decorators import argument as argumentfrom .decorators import command as commandfrom .decorators import confirmation_option as confirmation_optionfrom .decorators import group as groupfrom .decorators import help_option as help_optionfrom .decorators import make_pass_decorator as make_pass_decoratorfrom .decorators import option as optionfrom .decorators import pass_context as pass_contextfrom .decorators import pass_obj as pass_objfrom .decorators import password_option as password_optionfrom .decorators import version_option as version_optionfrom .exceptions import Abort as Abortfrom .exceptions import BadArgumentUsage as BadArgumentUsagefrom .exceptions import BadOptionUsage as BadOptionUsagefrom .exceptions import BadParameter as BadParameterfrom .exceptions import ClickException as ClickExceptionfrom .exceptions import FileError as FileErrorfrom .exceptions import MissingParameter as MissingParameterfrom .exceptions import NoSuchOption as NoSuchOptionfrom .exceptions import UsageError as UsageErrorfrom .formatting import HelpFormatter as HelpFormatterfrom .formatting import wrap_text as wrap_textfrom .globals import get_current_context as get_current_contextfrom .parser import OptionParser as OptionParserfrom .termui import clear as clearfrom .termui import confirm as confirmfrom .termui import echo_via_pager as echo_via_pagerfrom .termui import edit as editfrom .termui import getchar as getcharfrom .termui import launch as launchfrom .termui import pause as pausefrom .termui import progressbar as progressbarfrom .termui import prompt as promptfrom .termui import secho as sechofrom .termui import style as stylefrom .termui import unstyle as unstylefrom .types import BOOL as BOOLfrom .types import Choice as Choicefrom .types import DateTime as DateTimefrom .types import File as Filefrom .types import FLOAT as FLOATfrom .types import FloatRange as FloatRangefrom .types import INT as INTfrom .types import IntRange as IntRangefrom .types import ParamType as ParamTypefrom .types import Path as Pathfrom .types import STRING as STRINGfrom .types import Tuple as Tuplefrom .types import UNPROCESSED as UNPROCESSEDfrom .types import UUID as UUIDfrom .utils import echo as echofrom .utils import format_filename as format_filenamefrom .utils import get_app_dir as get_app_dirfrom .utils import get_binary_stream as get_binary_streamfrom .utils import get_text_stream as get_text_streamfrom .utils import open_file as open_file__version__ = "8.1.7"
 |