click-extended 1.0.0__py3-none-any.whl → 1.0.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- click_extended/__init__.py +2 -0
- click_extended/core/__init__.py +10 -0
- click_extended/core/decorators/__init__.py +21 -0
- click_extended/core/decorators/argument.py +227 -0
- click_extended/core/decorators/command.py +93 -0
- click_extended/core/decorators/context.py +56 -0
- click_extended/core/decorators/env.py +155 -0
- click_extended/core/decorators/group.py +96 -0
- click_extended/core/decorators/option.py +347 -0
- click_extended/core/decorators/prompt.py +69 -0
- click_extended/core/decorators/selection.py +155 -0
- click_extended/core/decorators/tag.py +109 -0
- click_extended/core/nodes/__init__.py +21 -0
- click_extended/core/nodes/_root_node.py +1012 -0
- click_extended/core/nodes/argument_node.py +165 -0
- click_extended/core/nodes/child_node.py +555 -0
- click_extended/core/nodes/child_validation_node.py +100 -0
- click_extended/core/nodes/node.py +55 -0
- click_extended/core/nodes/option_node.py +205 -0
- click_extended/core/nodes/parent_node.py +220 -0
- click_extended/core/nodes/validation_node.py +124 -0
- click_extended/core/other/__init__.py +7 -0
- click_extended/core/other/_click_command.py +60 -0
- click_extended/core/other/_click_group.py +246 -0
- click_extended/core/other/_tree.py +491 -0
- click_extended/core/other/context.py +496 -0
- click_extended/decorators/__init__.py +29 -0
- click_extended/decorators/check/__init__.py +57 -0
- click_extended/decorators/check/conflicts.py +149 -0
- click_extended/decorators/check/contains.py +69 -0
- click_extended/decorators/check/dependencies.py +115 -0
- click_extended/decorators/check/divisible_by.py +48 -0
- click_extended/decorators/check/ends_with.py +85 -0
- click_extended/decorators/check/exclusive.py +75 -0
- click_extended/decorators/check/falsy.py +37 -0
- click_extended/decorators/check/is_email.py +43 -0
- click_extended/decorators/check/is_hex_color.py +41 -0
- click_extended/decorators/check/is_hostname.py +47 -0
- click_extended/decorators/check/is_ipv4.py +46 -0
- click_extended/decorators/check/is_ipv6.py +46 -0
- click_extended/decorators/check/is_json.py +40 -0
- click_extended/decorators/check/is_mac_address.py +40 -0
- click_extended/decorators/check/is_negative.py +37 -0
- click_extended/decorators/check/is_non_zero.py +37 -0
- click_extended/decorators/check/is_port.py +39 -0
- click_extended/decorators/check/is_positive.py +37 -0
- click_extended/decorators/check/is_url.py +75 -0
- click_extended/decorators/check/is_uuid.py +40 -0
- click_extended/decorators/check/length.py +68 -0
- click_extended/decorators/check/not_empty.py +49 -0
- click_extended/decorators/check/regex.py +47 -0
- click_extended/decorators/check/requires.py +190 -0
- click_extended/decorators/check/starts_with.py +87 -0
- click_extended/decorators/check/truthy.py +37 -0
- click_extended/decorators/compare/__init__.py +15 -0
- click_extended/decorators/compare/at_least.py +57 -0
- click_extended/decorators/compare/at_most.py +57 -0
- click_extended/decorators/compare/between.py +119 -0
- click_extended/decorators/compare/greater_than.py +183 -0
- click_extended/decorators/compare/less_than.py +183 -0
- click_extended/decorators/convert/__init__.py +31 -0
- click_extended/decorators/convert/convert_angle.py +94 -0
- click_extended/decorators/convert/convert_area.py +123 -0
- click_extended/decorators/convert/convert_bits.py +211 -0
- click_extended/decorators/convert/convert_distance.py +154 -0
- click_extended/decorators/convert/convert_energy.py +155 -0
- click_extended/decorators/convert/convert_power.py +128 -0
- click_extended/decorators/convert/convert_pressure.py +131 -0
- click_extended/decorators/convert/convert_speed.py +122 -0
- click_extended/decorators/convert/convert_temperature.py +89 -0
- click_extended/decorators/convert/convert_time.py +108 -0
- click_extended/decorators/convert/convert_volume.py +218 -0
- click_extended/decorators/convert/convert_weight.py +158 -0
- click_extended/decorators/load/__init__.py +13 -0
- click_extended/decorators/load/load_csv.py +117 -0
- click_extended/decorators/load/load_json.py +61 -0
- click_extended/decorators/load/load_toml.py +47 -0
- click_extended/decorators/load/load_yaml.py +72 -0
- click_extended/decorators/math/__init__.py +37 -0
- click_extended/decorators/math/absolute.py +35 -0
- click_extended/decorators/math/add.py +48 -0
- click_extended/decorators/math/ceil.py +36 -0
- click_extended/decorators/math/clamp.py +51 -0
- click_extended/decorators/math/divide.py +42 -0
- click_extended/decorators/math/floor.py +36 -0
- click_extended/decorators/math/maximum.py +39 -0
- click_extended/decorators/math/minimum.py +39 -0
- click_extended/decorators/math/modulo.py +39 -0
- click_extended/decorators/math/multiply.py +51 -0
- click_extended/decorators/math/normalize.py +76 -0
- click_extended/decorators/math/power.py +39 -0
- click_extended/decorators/math/rounded.py +39 -0
- click_extended/decorators/math/sqrt.py +39 -0
- click_extended/decorators/math/subtract.py +39 -0
- click_extended/decorators/math/to_percent.py +63 -0
- click_extended/decorators/misc/__init__.py +17 -0
- click_extended/decorators/misc/choice.py +139 -0
- click_extended/decorators/misc/confirm_if.py +147 -0
- click_extended/decorators/misc/default.py +95 -0
- click_extended/decorators/misc/deprecated.py +131 -0
- click_extended/decorators/misc/experimental.py +79 -0
- click_extended/decorators/misc/now.py +42 -0
- click_extended/decorators/random/__init__.py +21 -0
- click_extended/decorators/random/random_bool.py +49 -0
- click_extended/decorators/random/random_choice.py +63 -0
- click_extended/decorators/random/random_datetime.py +140 -0
- click_extended/decorators/random/random_float.py +62 -0
- click_extended/decorators/random/random_integer.py +56 -0
- click_extended/decorators/random/random_prime.py +196 -0
- click_extended/decorators/random/random_string.py +77 -0
- click_extended/decorators/random/random_uuid.py +119 -0
- click_extended/decorators/transform/__init__.py +71 -0
- click_extended/decorators/transform/add_prefix.py +58 -0
- click_extended/decorators/transform/add_suffix.py +58 -0
- click_extended/decorators/transform/apply.py +35 -0
- click_extended/decorators/transform/basename.py +44 -0
- click_extended/decorators/transform/dirname.py +44 -0
- click_extended/decorators/transform/expand_vars.py +36 -0
- click_extended/decorators/transform/remove_prefix.py +57 -0
- click_extended/decorators/transform/remove_suffix.py +57 -0
- click_extended/decorators/transform/replace.py +46 -0
- click_extended/decorators/transform/slugify.py +45 -0
- click_extended/decorators/transform/split.py +43 -0
- click_extended/decorators/transform/strip.py +148 -0
- click_extended/decorators/transform/to_case.py +216 -0
- click_extended/decorators/transform/to_date.py +75 -0
- click_extended/decorators/transform/to_datetime.py +83 -0
- click_extended/decorators/transform/to_path.py +274 -0
- click_extended/decorators/transform/to_time.py +77 -0
- click_extended/decorators/transform/to_timestamp.py +114 -0
- click_extended/decorators/transform/truncate.py +47 -0
- click_extended/utils/__init__.py +13 -0
- click_extended/utils/casing.py +169 -0
- click_extended/utils/checks.py +48 -0
- click_extended/utils/dispatch.py +1016 -0
- click_extended/utils/format.py +101 -0
- click_extended/utils/humanize.py +209 -0
- click_extended/utils/naming.py +238 -0
- click_extended/utils/process.py +294 -0
- click_extended/utils/selection.py +267 -0
- click_extended/utils/time.py +46 -0
- {click_extended-1.0.0.dist-info → click_extended-1.0.2.dist-info}/METADATA +2 -1
- click_extended-1.0.2.dist-info/RECORD +150 -0
- click_extended-1.0.0.dist-info/RECORD +0 -10
- {click_extended-1.0.0.dist-info → click_extended-1.0.2.dist-info}/WHEEL +0 -0
- {click_extended-1.0.0.dist-info → click_extended-1.0.2.dist-info}/licenses/AUTHORS.md +0 -0
- {click_extended-1.0.0.dist-info → click_extended-1.0.2.dist-info}/licenses/LICENSE +0 -0
- {click_extended-1.0.0.dist-info → click_extended-1.0.2.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
click_extended/__init__.py,sha256=mF6rVnQnG-IiMSo-hX16ZzgSv8F-F3BoAyX5PDx6x90,714
|
|
2
|
+
click_extended/classes.py,sha256=SdwglQ7O5ahjYeVnaM9_hCU14BYZBv8C0ZjWQIo7A_I,837
|
|
3
|
+
click_extended/errors.py,sha256=tkvAXs4oUZ8SFgX37KhYrHAlsxmOGrSFLIezCH9NDQI,13897
|
|
4
|
+
click_extended/types.py,sha256=0YT4QN269H-01RVxDGSpMT_hJm8cTcONonpX4_YxJlg,238
|
|
5
|
+
click_extended/core/__init__.py,sha256=oTJS5M1OAwRQ57aMcWV7v2D2kHjCn8zTOpPEIRpTLKM,446
|
|
6
|
+
click_extended/core/decorators/__init__.py,sha256=AxqTVsGJcCG5d60RzffSh4cqA4U_okaMl3hlObqMOy4,656
|
|
7
|
+
click_extended/core/decorators/argument.py,sha256=MzkMkkayR7XeNNtbHstj1PpFnrCD-VCFAE3SnpO7OMY,7201
|
|
8
|
+
click_extended/core/decorators/command.py,sha256=82rwi8PIMGgOagFoNISOQkdEebKxvS9A_RHV80shUzI,2803
|
|
9
|
+
click_extended/core/decorators/context.py,sha256=y_jzARNNdu2JyUhIaUFpCAurztOTsYJTX96HQ2csZs0,1546
|
|
10
|
+
click_extended/core/decorators/env.py,sha256=DgbQsOZ2De-Ur5hxR8hzN3-3T16K3FLsoZHS2EsKK6c,4777
|
|
11
|
+
click_extended/core/decorators/group.py,sha256=_bammCVi_7vsw7YgSUTQuQp6XFUHy7knNcOmyg6DiPc,2859
|
|
12
|
+
click_extended/core/decorators/option.py,sha256=E7NzM7dNtICh9YcAvYPvJkdvuxKDNjCIFl9a8ZyhXWQ,11810
|
|
13
|
+
click_extended/core/decorators/prompt.py,sha256=QwySQ6ZK0j0iL_jlwH3AU0U4G1X3MKAJ8_TysEXxFX8,1735
|
|
14
|
+
click_extended/core/decorators/selection.py,sha256=5cjWpAwReu8EY0mkziwpqhi_T5ucIlAPx1p-t3MkGJQ,5589
|
|
15
|
+
click_extended/core/decorators/tag.py,sha256=395e6GN59QBj-L0NSBPynQOX3_2LAOIXkj8XKNXrRPs,3055
|
|
16
|
+
click_extended/core/nodes/__init__.py,sha256=jSsKTiHPUpqXdk54cRXDotT0YMmVGezIIb3nQ0rcWko,737
|
|
17
|
+
click_extended/core/nodes/_root_node.py,sha256=PitK6GT7LPYugxPFdVO6blG0-mZV9S2apUupgWCsYI0,43060
|
|
18
|
+
click_extended/core/nodes/argument_node.py,sha256=gqG4HTDR40Xru_U_beKsbjVtLtwmPKfwwAUmcf5-1iQ,5284
|
|
19
|
+
click_extended/core/nodes/child_node.py,sha256=yIuXmUzdXN0EToR9ohBRvHFBriSZ-xaLkv7P27PbTrA,17095
|
|
20
|
+
click_extended/core/nodes/child_validation_node.py,sha256=p4ODRpW-Q-aQB0zlbNAeLahFAcuAaMLPtZl4r0ywmk0,3301
|
|
21
|
+
click_extended/core/nodes/node.py,sha256=Q5OgaSNhz1dAIcYNDQOaAS2eCdu9XMMyDA5lXfZbY4E,1602
|
|
22
|
+
click_extended/core/nodes/option_node.py,sha256=fCYrnW846mz1aDyf9sTQAnuIYUGd5g6XyUN6aBMIWgE,7055
|
|
23
|
+
click_extended/core/nodes/parent_node.py,sha256=x526r7XjfsUypsB1N-5aXjEbP2d06eLF30G6IszxV3w,7352
|
|
24
|
+
click_extended/core/nodes/validation_node.py,sha256=9X_dBbr1BB-OYRxnGsM8CoKRbKT1MuQ29Injtf_Iu_E,4020
|
|
25
|
+
click_extended/core/other/__init__.py,sha256=xZl7jM1Wud-g2c0l-CQYSMNwsJqwNwFDLE8FGL57XjA,155
|
|
26
|
+
click_extended/core/other/_click_command.py,sha256=NR7e-GyKiqyVJC8X5NjRXz5ehsYl9axVIxZCSejzUg4,1738
|
|
27
|
+
click_extended/core/other/_click_group.py,sha256=BoEQoyx13n27Qy1-h_Dkaie68MlyPClIVB8cNtfPGdY,7714
|
|
28
|
+
click_extended/core/other/_tree.py,sha256=3tRivUtKbMst_oF1uICvl7ufRotSVtISGXkBIui09l8,16081
|
|
29
|
+
click_extended/core/other/context.py,sha256=KrXfDGoVV_xuIv6fFskF0hHtWDyRDETWoSXw24GxYs8,14619
|
|
30
|
+
click_extended/decorators/__init__.py,sha256=BzOreglycbxGITsWLSB3VkN8e37F-ADYlGOWoO1aO7A,1142
|
|
31
|
+
click_extended/decorators/check/__init__.py,sha256=WKwRFBWFQHxA69DcHgO23fBZfLRzM8N9uUlkrl7UCS4,2180
|
|
32
|
+
click_extended/decorators/check/conflicts.py,sha256=qnu4k9uAWWFkzuOUXWtDS6M8VlIjzfEAH3m4qLUdwH8,4557
|
|
33
|
+
click_extended/decorators/check/contains.py,sha256=I5W3qhxq7LAMbJbgQcGuwjys1EojP_xgIw9lLwmGnlU,2066
|
|
34
|
+
click_extended/decorators/check/dependencies.py,sha256=nasNew46E0qZPW2w4T7pOP3XzmGFWVhaJvanWV82ykE,3783
|
|
35
|
+
click_extended/decorators/check/divisible_by.py,sha256=8Y2uom03nfCTXPhKbta5cSrXuyh_hSRqsY--VPqlA1o,1104
|
|
36
|
+
click_extended/decorators/check/ends_with.py,sha256=O3b0ybcQcWEE4SqXis8J4GQfEOBkfXj0KF1yj1Q-Xhk,2529
|
|
37
|
+
click_extended/decorators/check/exclusive.py,sha256=LxhL8NwYWH1U2BGlUBwYKVpkSj7OLE9wX7-8gXgPIIc,2276
|
|
38
|
+
click_extended/decorators/check/falsy.py,sha256=kI_Ycg0Lwsg7nlGCnCvF2BHMFypHf8_AAeLDIzkUvyY,737
|
|
39
|
+
click_extended/decorators/check/is_email.py,sha256=Rp5DT-JDhdo_pCdwtGfVs6NOC_d-LcCgo4o2wf9UbAw,1012
|
|
40
|
+
click_extended/decorators/check/is_hex_color.py,sha256=XM-Ajvojh4YL6rMpWEh_WRUE7bjfbNxf1hNl2IZ2nSE,940
|
|
41
|
+
click_extended/decorators/check/is_hostname.py,sha256=yEHEx1dMRuYdClmBy8jdz-a1TICJfPY3hXYDym9B6c0,1110
|
|
42
|
+
click_extended/decorators/check/is_ipv4.py,sha256=Gk5Gf08i-RIQrpkvFtI9bHX5MVgxA30pEO3EJxjf-6g,1105
|
|
43
|
+
click_extended/decorators/check/is_ipv6.py,sha256=8TRHsHu5p6K-G-v5rWAQTH_H9ChCU6vFzFMZr3sq_IE,1105
|
|
44
|
+
click_extended/decorators/check/is_json.py,sha256=5GEYzvXnO5pVc_zbbHVEW3l-EFeVAlXvg6WTCIyL_hk,847
|
|
45
|
+
click_extended/decorators/check/is_mac_address.py,sha256=s-bvJ1uNmMwsNS4EuRFCsFwZ00TFnJ-1dEcsdHwPH8o,999
|
|
46
|
+
click_extended/decorators/check/is_negative.py,sha256=UYLNUOmIqkXnL6wmxQUyGnFXv8cUn0CuJ5fkdm4kpWs,791
|
|
47
|
+
click_extended/decorators/check/is_non_zero.py,sha256=_p2pZu4p_S61GtxeIjrLXjB_8jqEzOAuXatWJ0lUAjg,781
|
|
48
|
+
click_extended/decorators/check/is_port.py,sha256=KYRF5GKLlsMcBDwMryO3aDyz4w6B_fCHphbJ8PQ8pUg,858
|
|
49
|
+
click_extended/decorators/check/is_positive.py,sha256=pLqW1evzX0p8rJSeNKpK7F6EBBsqG8omMRA9kQjAjpo,791
|
|
50
|
+
click_extended/decorators/check/is_url.py,sha256=SLFO4v70CbuxOLr2zPMwH-CU8XqS1fa_XQLjlvTinME,2201
|
|
51
|
+
click_extended/decorators/check/is_uuid.py,sha256=QmCpQ6k7Z6zX0cICySqhKFr5wv0jkbGL7e1AA_jeFLw,844
|
|
52
|
+
click_extended/decorators/check/length.py,sha256=guenyyVsoXHQcj0iZqqLcPxhujYTL6XKgBmgBmoG_Ls,1930
|
|
53
|
+
click_extended/decorators/check/not_empty.py,sha256=TdznbvzhYJlWm2SoSxTTcpLT0SGLQMkXx8TTUhIqM5w,1125
|
|
54
|
+
click_extended/decorators/check/regex.py,sha256=Vf6Tgx1gzmjKgWIT0nPtaFNv2taTdvVDXOWqmZg4Pm0,1066
|
|
55
|
+
click_extended/decorators/check/requires.py,sha256=t_K4MIuli3oNkeHaNjIIEvwnwDop7bCrtKovL0HHz2c,5644
|
|
56
|
+
click_extended/decorators/check/starts_with.py,sha256=0XDhJC9_2-BgDeb2ASnHWPhkXYFizHy47ns0M6dRjKg,2561
|
|
57
|
+
click_extended/decorators/check/truthy.py,sha256=rfmQvHn-AN-y6knopta5PnYYvzgFVOkM1TqxDUI-nfw,748
|
|
58
|
+
click_extended/decorators/compare/__init__.py,sha256=Tteuvg7jh_kgrGtk8WgxvzVec4HctoJkYxHvrdCwxIw,503
|
|
59
|
+
click_extended/decorators/compare/at_least.py,sha256=88swu0FOEMeeOZSpjRwrrDCEmG7I6ob1eOKHk1DWxu0,1508
|
|
60
|
+
click_extended/decorators/compare/at_most.py,sha256=chucAAnqIpaeRtAe26LJuFqu8XD1DAcdlMnuuaZm67k,1499
|
|
61
|
+
click_extended/decorators/compare/between.py,sha256=gXV3SXhgoKQqPQl7JvxM4SIUxPzYQmQGowg6iMXvllw,2916
|
|
62
|
+
click_extended/decorators/compare/greater_than.py,sha256=O-oL8pjX7ZG7nAXqCE4wGpmWQ_i7FuX2Rf5KkXRNluw,5072
|
|
63
|
+
click_extended/decorators/compare/less_than.py,sha256=wW3NT9IeeR_Z-kqYBCaZmWLBKbGptQZGjpla4yoaTqg,5103
|
|
64
|
+
click_extended/decorators/convert/__init__.py,sha256=nhZUTy1-5XGVea3JrHxavKNNErr-a_wfgV4lP-PRMQ4,1279
|
|
65
|
+
click_extended/decorators/convert/convert_angle.py,sha256=yy8SBhEuhnr0zp_Aq0wyBcKpLi-nB0geiUvC-RBNNjU,2090
|
|
66
|
+
click_extended/decorators/convert/convert_area.py,sha256=s9K2PnovkN67ucBUiHn2ifu8FqhgRWRitrWp4EJBdts,2874
|
|
67
|
+
click_extended/decorators/convert/convert_bits.py,sha256=PBbmuz4fPHE-dGjZimmtuw2nwvBhqJn2b7hb0FDatv8,5016
|
|
68
|
+
click_extended/decorators/convert/convert_distance.py,sha256=nO0wHe8TzDaqBDfG0_1A3TjcgYXt51at11OEOs2opY0,3368
|
|
69
|
+
click_extended/decorators/convert/convert_energy.py,sha256=xSviI-pA3DB4AX3qk3uHUD6e_O6BO6TnWEWok2SGEvU,3638
|
|
70
|
+
click_extended/decorators/convert/convert_power.py,sha256=2piQOu7aoMdR4yrJs0strV0FYu7FrzdCthmg0nsww3M,3164
|
|
71
|
+
click_extended/decorators/convert/convert_pressure.py,sha256=79as0rHoH-9chsDS-rsPE6vuawmRv_JDFrzXS2zRm2A,3064
|
|
72
|
+
click_extended/decorators/convert/convert_speed.py,sha256=JMIqN5VOeH3nR_1KdPiwLYcarjOvivM6QswAGoGI6xg,3051
|
|
73
|
+
click_extended/decorators/convert/convert_temperature.py,sha256=X9E3rmbm_La6c34k_gu0F0TDXJYLzGzeuVZxNVkd3WE,2701
|
|
74
|
+
click_extended/decorators/convert/convert_time.py,sha256=CroNWzUszlL_GRnvPRZgeX0DNKZx3ozIKn-TaVegr0g,3053
|
|
75
|
+
click_extended/decorators/convert/convert_volume.py,sha256=wEqzlrt0BVIwmX3YxsW2cVHNoPZzpI9TcuiZhAxHqYI,5195
|
|
76
|
+
click_extended/decorators/convert/convert_weight.py,sha256=Qw_UKcRe2nwKpfcox7Hyu3A4x0cMnxiNZkpZEeSsOxU,3809
|
|
77
|
+
click_extended/decorators/load/__init__.py,sha256=FEv9z-MAF39GfFgrgSHXpXnmnNn6Bl4g3odmnelAwEk,408
|
|
78
|
+
click_extended/decorators/load/load_csv.py,sha256=3tO7Pl_cDKA1jO8o9Xnh0-kmGAFmA4NpAPS_8LCIW0c,4007
|
|
79
|
+
click_extended/decorators/load/load_json.py,sha256=e4P9aa9w1Z1FVrTDdZf9dIJI99hmL2HV89y7u7A_als,1672
|
|
80
|
+
click_extended/decorators/load/load_toml.py,sha256=6rksM5jbKJcqLshLNX7zZ2vPTgemPdbA0fLK1BXCru0,1194
|
|
81
|
+
click_extended/decorators/load/load_yaml.py,sha256=yST4rurmUgVq_BfUg7Gt6bBljp1dNBVYcI6qhlNN0KE,2230
|
|
82
|
+
click_extended/decorators/math/__init__.py,sha256=lt5B4rGexQzJ8u3XM2u6yDRxN5k23WqsRQrilqXoyrM,1245
|
|
83
|
+
click_extended/decorators/math/absolute.py,sha256=S5IB6b9iyEfTkFpvePhDietzr4b238Eishg4vi3hdFQ,730
|
|
84
|
+
click_extended/decorators/math/add.py,sha256=vbIAd6FMXGEJdkXdUzObSAKOlzm0jF2vfe8AwGBcGJE,962
|
|
85
|
+
click_extended/decorators/math/ceil.py,sha256=2Jkl4sdoQlepa9p9v5OyRvK2ZPPQk-MpYgEqGuyjWQ8,724
|
|
86
|
+
click_extended/decorators/math/clamp.py,sha256=xImm-OtQcUiojieLWNokDIcqzZtyM9zzKevzlbcIHwY,1262
|
|
87
|
+
click_extended/decorators/math/divide.py,sha256=8nqQ0cfk-zR7TmLRr-akT4Y1m5-o_uT1XjnpG0tIWRQ,878
|
|
88
|
+
click_extended/decorators/math/floor.py,sha256=LxnAjDnS2EXOMJ7TELdxtuTan1sJaChzoeYEtOzrTZY,722
|
|
89
|
+
click_extended/decorators/math/maximum.py,sha256=3HTUctf1-jkBxZfLNTcci-vZaLizxGi8ttrBSENDbho,864
|
|
90
|
+
click_extended/decorators/math/minimum.py,sha256=IogP3MyEltbbzMJrBCuqmYJsmDCdHGB8uG_L6mJ7IR4,854
|
|
91
|
+
click_extended/decorators/math/modulo.py,sha256=Tolxf3G1x7vfyUpL0ouPzIzkSc_KmfqR879apAQvBdA,796
|
|
92
|
+
click_extended/decorators/math/multiply.py,sha256=hur7kZUgoHUt_DG_GHLu3KQUSzUJZK2q7kngS_75xvY,1113
|
|
93
|
+
click_extended/decorators/math/normalize.py,sha256=DiCZe60rGoPK3uut_9l1Z_B4fSUTdb9VKaV-klONtSg,1941
|
|
94
|
+
click_extended/decorators/math/power.py,sha256=YtlC3fSvGi97fGj0yZ9pWEuAg6-2S9jqlBBI3eVU7QY,774
|
|
95
|
+
click_extended/decorators/math/rounded.py,sha256=bHYZQbtd5zRCd3BOEnjxTGdFAmQAL5l8dynS39-OlBs,865
|
|
96
|
+
click_extended/decorators/math/sqrt.py,sha256=CWZoQpVw2lbP_LNeg-tWW8fz9VEHTX8eQNPNuDVoTcg,834
|
|
97
|
+
click_extended/decorators/math/subtract.py,sha256=A7TMByTUH3coSEe7iRN9NkHW2mv47kufb1H1adomG4A,806
|
|
98
|
+
click_extended/decorators/math/to_percent.py,sha256=39vY13u7Z-pyob1vCoPBDy10FqJasJTVzHcrpTH6ERQ,1374
|
|
99
|
+
click_extended/decorators/misc/__init__.py,sha256=TDLrR2mZj_oqAcWEqB_C19Hxn8ClrZW2CbuTmJNRblU,553
|
|
100
|
+
click_extended/decorators/misc/choice.py,sha256=RTVVjl0YUZ2Ti4j6yoHkUpJ0aqNwcnc3rTfmCVr0y0U,4354
|
|
101
|
+
click_extended/decorators/misc/confirm_if.py,sha256=Rf3HcVVTRqz3sGSiPT02yz65_L351Fzkuw2V6pljlmY,4786
|
|
102
|
+
click_extended/decorators/misc/default.py,sha256=TjZJKmHEqNThzyD6hOjQy2_QgHRenKILnAwfV1V5KAw,2473
|
|
103
|
+
click_extended/decorators/misc/deprecated.py,sha256=Scz4Vh5aHv2NlU5n2muEQfeYOJMuN5aYt_oa3e-iNWE,3924
|
|
104
|
+
click_extended/decorators/misc/experimental.py,sha256=wD6Jrdm-tJ6_O1kXcQg5s4cU6QH9jvyOyQnJCYBZ2Gs,2046
|
|
105
|
+
click_extended/decorators/misc/now.py,sha256=R-oAOQ8Sr_483ddNTzlVJV4XLYlrYHLG-KhiIZSZtTU,1084
|
|
106
|
+
click_extended/decorators/random/__init__.py,sha256=KH5itAOoTWzHajxxx0M_Gc2bH7f2vIQnt7dVCS0POyg,836
|
|
107
|
+
click_extended/decorators/random/random_bool.py,sha256=ah9hFJg3Bp1HnAwJ442yv5U2WaK8ZBsUhWr4s9jQf9M,1275
|
|
108
|
+
click_extended/decorators/random/random_choice.py,sha256=R4NU50VsHJBLHHJrdu341yAt9Olfh1sUXashkuMedDs,1884
|
|
109
|
+
click_extended/decorators/random/random_datetime.py,sha256=0IwieYAEqv351I_J2VV0ymh-v4wyGQOsahwEtRGAN-Q,4411
|
|
110
|
+
click_extended/decorators/random/random_float.py,sha256=qd8xuzGaYc9hXRxs_gZ0uc2Kax17ZyAIKJZgl85LUuk,1763
|
|
111
|
+
click_extended/decorators/random/random_integer.py,sha256=3CvBxumTI_jq5dHyYDXaAtmAosZ_RjoSlaQo8UbRidY,1516
|
|
112
|
+
click_extended/decorators/random/random_prime.py,sha256=uborCrRP30kO72Qup0l3gsjgLnqGFeIGIEaca1Rffh4,3948
|
|
113
|
+
click_extended/decorators/random/random_string.py,sha256=GIXbsr-L3ePx9MofnrbSjAW88dMNPP5YRuVsbAc5OrM,2081
|
|
114
|
+
click_extended/decorators/random/random_uuid.py,sha256=NUioLG0NjBLkFUWHHeddkewS4AuaRFPRzMLb236_w_I,4434
|
|
115
|
+
click_extended/decorators/transform/__init__.py,sha256=YP8GxEvf7ZYv6qW4YsAR3t_YSif2QGxNSgpGZnucpDE,2235
|
|
116
|
+
click_extended/decorators/transform/add_prefix.py,sha256=rWnwigb_HnwR0X-i3ybBprxFNGCTuUSNyouP5aOI50k,1467
|
|
117
|
+
click_extended/decorators/transform/add_suffix.py,sha256=ji83-yC-aALV-m80AhHqgtxoUuTdIm2_iXhBT03fpB0,1463
|
|
118
|
+
click_extended/decorators/transform/apply.py,sha256=cZSlErFH5BkFqlEA7r9rhq563nj65vA96mGL50wSRoE,855
|
|
119
|
+
click_extended/decorators/transform/basename.py,sha256=9ZpsLkMMUlJxIVqmif6cMbWvME-CctSR84A8PWeYxEk,1043
|
|
120
|
+
click_extended/decorators/transform/dirname.py,sha256=84krZ6GqZOuXlmCn4xpeGBTw20wVrR22smQO6I5Cn3U,1057
|
|
121
|
+
click_extended/decorators/transform/expand_vars.py,sha256=5RTP_DJpGi1ioQVG2PEjys1OMNyJKeDpHzhQZXLgF24,753
|
|
122
|
+
click_extended/decorators/transform/remove_prefix.py,sha256=WUPFnm3KvqAcJCCF2lR_4o6JiyBPWnpM_9Oz2AJyCzY,1433
|
|
123
|
+
click_extended/decorators/transform/remove_suffix.py,sha256=koS0wVCj6_ekWmsvaNn3igIsUTRoP1Hwz7cu_x8RI-A,1426
|
|
124
|
+
click_extended/decorators/transform/replace.py,sha256=X-QU8rWf7VCY5mbgrQ4wYjs5RlO9cgUJzPSbAmn-5eg,1138
|
|
125
|
+
click_extended/decorators/transform/slugify.py,sha256=RNU-eGViePyFVYWfBEfBHd5gvFSE75NZ-189Dy40XSs,1008
|
|
126
|
+
click_extended/decorators/transform/split.py,sha256=iKG29M-azZ01NyCnpXm6T1cd2Elot3Q3lzEBFdPV1Ro,1039
|
|
127
|
+
click_extended/decorators/transform/strip.py,sha256=2yzL_JP3hG9e_IJ2AhQ6VErJ6jkphtjz9V7pTzhfZCM,3863
|
|
128
|
+
click_extended/decorators/transform/to_case.py,sha256=8rmmrybk3iJ8DI-WJZLyIqc6QzKPVjaehUfbuDdrOrM,3966
|
|
129
|
+
click_extended/decorators/transform/to_date.py,sha256=tFyWpJxqUbKlJjnWvo36_CuXjTGEkWagYlh8qXNzAhM,2140
|
|
130
|
+
click_extended/decorators/transform/to_datetime.py,sha256=4sWZxK5AdkbdazcC8nwVtxHEGHhnPXaeHYSUxfpmbn4,2626
|
|
131
|
+
click_extended/decorators/transform/to_path.py,sha256=zfC3scNbZJng6XVrnT-j0iZRoawgh4Ahd0qQ8xCz_rE,9525
|
|
132
|
+
click_extended/decorators/transform/to_time.py,sha256=fVUBU6d_D0wU-lkZ-PWW1qzLzEpi4kV7pOOSV8qS39I,2162
|
|
133
|
+
click_extended/decorators/transform/to_timestamp.py,sha256=k16cpcsOYRww1CEV0TF8l2EGM2_gZdQkXayPL-Qkc6w,3320
|
|
134
|
+
click_extended/decorators/transform/truncate.py,sha256=nUEsmgKIUcWaMArnLNTlUQb1te9ERQPylE9rvWHZ_i0,1100
|
|
135
|
+
click_extended/utils/__init__.py,sha256=Pqd6eGsDTbQ2PNR8nZlsI1KbgrU59u74vdPPmDY4FVA,348
|
|
136
|
+
click_extended/utils/casing.py,sha256=akduSkqOl02VLea-sEXgkH-KItpGlQYrpghGVyJDMn0,5608
|
|
137
|
+
click_extended/utils/checks.py,sha256=bdCqnCpWcThOJPaSeZXYQoZFSGUXVaYyLOWjJvW0BNA,1293
|
|
138
|
+
click_extended/utils/dispatch.py,sha256=LXMnbOaX96rgKdxM3yheZmRhI3zMwKdUKzDV3HVzw5U,32777
|
|
139
|
+
click_extended/utils/format.py,sha256=z20xAaiIgMbjIIxfMJpC2_aOC02nhxwHGynFJ8M9EDA,3480
|
|
140
|
+
click_extended/utils/humanize.py,sha256=8x6BqSqWdQLPQSI1SAvFv-_vxBw3wVFH9qpcw2C87tc,7193
|
|
141
|
+
click_extended/utils/naming.py,sha256=kNmzOqidgZZ1dE5aMYrxpWt4VwcLuEiFunpumpfHuZU,7171
|
|
142
|
+
click_extended/utils/process.py,sha256=sU3ZCMjBgjKcDnTRLKPdQ_TAjk0AT7Q8SatagD0JyHA,9729
|
|
143
|
+
click_extended/utils/selection.py,sha256=_OQC88pGPUh29boxmS5ugXEi9jZGqAG180S27PeQaj0,9875
|
|
144
|
+
click_extended/utils/time.py,sha256=H5m5caIEau_1GHkiYgKL_LcTtVdw2TkFVbkqJu7A9rQ,1067
|
|
145
|
+
click_extended-1.0.2.dist-info/licenses/AUTHORS.md,sha256=NkShPinjqtnRDQVRyVnfJuOGM56sejauE3WRoYCcbtw,132
|
|
146
|
+
click_extended-1.0.2.dist-info/licenses/LICENSE,sha256=gjO8hzM4mFSBXFikktaXVSgmXGcre91_GPJ-E_yP56E,1075
|
|
147
|
+
click_extended-1.0.2.dist-info/METADATA,sha256=LoKIzHzO5csaGIpPD68v1R800kVlUM7ai_ACXolUxzs,10762
|
|
148
|
+
click_extended-1.0.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
149
|
+
click_extended-1.0.2.dist-info/top_level.txt,sha256=2G3bm6tCNv80okRm773jKTk-_z1ElY-seaozZrn_TxA,15
|
|
150
|
+
click_extended-1.0.2.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
click_extended/__init__.py,sha256=wTarCHBxMz59fe0vCTyq8RiN0COooJ892C0N2OuPLLQ,640
|
|
2
|
-
click_extended/classes.py,sha256=SdwglQ7O5ahjYeVnaM9_hCU14BYZBv8C0ZjWQIo7A_I,837
|
|
3
|
-
click_extended/errors.py,sha256=tkvAXs4oUZ8SFgX37KhYrHAlsxmOGrSFLIezCH9NDQI,13897
|
|
4
|
-
click_extended/types.py,sha256=0YT4QN269H-01RVxDGSpMT_hJm8cTcONonpX4_YxJlg,238
|
|
5
|
-
click_extended-1.0.0.dist-info/licenses/AUTHORS.md,sha256=NkShPinjqtnRDQVRyVnfJuOGM56sejauE3WRoYCcbtw,132
|
|
6
|
-
click_extended-1.0.0.dist-info/licenses/LICENSE,sha256=gjO8hzM4mFSBXFikktaXVSgmXGcre91_GPJ-E_yP56E,1075
|
|
7
|
-
click_extended-1.0.0.dist-info/METADATA,sha256=l7TL-IV44rqCe0TzV7VHjjb7_dVtDxSdBBf9lsYmjes,10711
|
|
8
|
-
click_extended-1.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
9
|
-
click_extended-1.0.0.dist-info/top_level.txt,sha256=2G3bm6tCNv80okRm773jKTk-_z1ElY-seaozZrn_TxA,15
|
|
10
|
-
click_extended-1.0.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|