-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpinq.pyi
More file actions
845 lines (588 loc) Β· 21 KB
/
pinq.pyi
File metadata and controls
845 lines (588 loc) Β· 21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
"""Type stubs for pinq - Python binding for inquire CLI prompts.
This file provides complete type information for the pinq module.
All classes support method chaining with &mut self pattern returning Self.
"""
from typing import List, Optional
from enum import Enum
__version__: str
"""pinq version (0.9.2)"""
# ============================================================================
# ENUMS
# ============================================================================
class PasswordDisplayMode(Enum):
"""Display mode for password input.
Controls how password characters are displayed while typing.
"""
Masked: PasswordDisplayMode
"""Characters shown as asterisks or dots"""
Hidden: PasswordDisplayMode
"""Characters completely hidden"""
class InputAction(Enum):
"""Text input action type.
Describes the action performed during text input.
"""
NoChange: InputAction
"""No action, input continues normally"""
Submit: InputAction
"""User submitted the input"""
Cancel: InputAction
"""User canceled input with ESC"""
Interrupt: InputAction
"""User interrupted with Ctrl+C"""
# ============================================================================
# TEXT PROMPT
# ============================================================================
class TextPrompt:
"""Interactive text input prompt.
Allows users to input free-form text with optional default value,
help message, and pagination settings.
All builder methods return Self for method chaining.
Example:
prompt = TextPrompt("Enter name:").with_default("John").with_help_message("3-20 chars")
name = prompt.prompt()
"""
def __init__(self, message: str) -> None:
"""Create a new text prompt.
Args:
message: The prompt message displayed to the user
"""
...
def with_default(self, default: str) -> TextPrompt:
"""Set a default value returned if user presses Enter.
Args:
default: The default text value
Returns:
Self for method chaining
"""
...
def with_help_message(self, help: str) -> TextPrompt:
"""Set a help message displayed below the main prompt.
Args:
help: The help message text
Returns:
Self for method chaining
"""
...
def with_page_size(self, size: int) -> TextPrompt:
"""Set pagination size for autocompletion suggestions.
Args:
size: Number of items to display per page
Returns:
Self for method chaining
"""
...
def prompt(self) -> str:
"""Display the prompt and collect input.
Blocks until user submits (Enter) or cancels (Ctrl+C).
Returns:
The user's input text
Raises:
RuntimeError: If not TTY, IO error, or operation canceled
"""
...
def prompt_skippable(self) -> Optional[str]:
"""Display prompt allowing user to skip with ESC.
Returns None if user presses ESC instead of Enter.
Returns:
The input text or None if skipped
Raises:
RuntimeError: If not TTY or IO error
"""
...
# ============================================================================
# CONFIRM PROMPT
# ============================================================================
class ConfirmPrompt:
"""Yes/No confirmation prompt.
Displays a simple yes/no question to the user.
All builder methods return Self for method chaining.
Example:
confirmed = ConfirmPrompt("Delete?").with_default(False).prompt()
"""
def __init__(self, message: str) -> None:
"""Create a new confirmation prompt.
Args:
message: The yes/no question
"""
...
def with_default(self, default: bool) -> ConfirmPrompt:
"""Set default answer (returned if user presses Enter).
Args:
default: True for yes, False for no
Returns:
Self for method chaining
"""
...
def with_help_message(self, help: str) -> ConfirmPrompt:
"""Set help message displayed below the prompt.
Args:
help: The help text
Returns:
Self for method chaining
"""
...
def prompt(self) -> bool:
"""Display the confirmation and collect answer.
Returns:
True if yes, False if no
Raises:
RuntimeError: If not TTY, IO error, or canceled
"""
...
def prompt_skippable(self) -> Optional[bool]:
"""Display confirmation allowing user to skip with ESC.
Returns:
True/False or None if skipped
Raises:
RuntimeError: If not TTY or IO error
"""
...
# ============================================================================
# PASSWORD PROMPT
# ============================================================================
class PasswordPrompt:
"""Password/secret input prompt.
Text input that doesn't echo characters to terminal for secure input.
All builder methods return Self for method chaining.
Example:
password = PasswordPrompt("Enter password:").with_help_message("8+ chars").prompt()
"""
def __init__(self, message: str) -> None:
"""Create a new password prompt.
Args:
message: The prompt message
"""
...
def with_help_message(self, help: str) -> PasswordPrompt:
"""Set help message displayed below the prompt.
Args:
help: The help text
Returns:
Self for method chaining
"""
...
def prompt(self) -> str:
"""Display prompt and collect password input.
Characters are not echoed to the terminal.
Returns:
The entered password
Raises:
RuntimeError: If not TTY, IO error, or canceled
"""
...
def prompt_skippable(self) -> Optional[str]:
"""Display prompt allowing user to skip with ESC.
Returns:
The password or None if skipped
Raises:
RuntimeError: If not TTY or IO error
"""
...
# ============================================================================
# SELECT PROMPT
# ============================================================================
class SelectPrompt:
"""Single-choice selection prompt.
Allows user to select exactly one option from a list using arrow keys.
All builder methods return Self for method chaining.
Example:
choice = SelectPrompt("Pick color:", ["Red", "Green", "Blue"]).with_default(0).prompt()
"""
def __init__(self, message: str, options: List[str]) -> None:
"""Create a new select prompt.
Args:
message: The selection prompt message
options: Non-empty list of options to choose from
Raises:
RuntimeError: If options list is empty
"""
...
def with_default(self, index: int) -> SelectPrompt:
"""Set default selected option by index.
Args:
index: Index of the default option (0-based)
Returns:
Self for method chaining
Raises:
RuntimeError: If index is out of range
"""
...
def with_help_message(self, help: str) -> SelectPrompt:
"""Set help message displayed below the prompt.
Args:
help: The help text
Returns:
Self for method chaining
"""
...
def with_page_size(self, size: int) -> SelectPrompt:
"""Set how many options are visible at once.
Args:
size: Number of options to display per page
Returns:
Self for method chaining
"""
...
def prompt(self) -> str:
"""Display prompt and collect selection.
User navigates with arrow keys and selects with Enter.
Returns:
The selected option text
Raises:
RuntimeError: If not TTY, IO error, or canceled
"""
...
def prompt_skippable(self) -> Optional[str]:
"""Display prompt allowing user to skip with ESC.
Returns:
The selected option or None if skipped
Raises:
RuntimeError: If not TTY or IO error
"""
...
# ============================================================================
# MULTISELECT PROMPT
# ============================================================================
class MultiSelectPrompt:
"""Multiple-choice selection prompt.
Allows user to select zero or more options from a list.
Uses Space to toggle selection and Enter to confirm.
All builder methods return Self for method chaining.
Example:
items = MultiSelectPrompt("Pick fruits:", ["Apple", "Banana"]).prompt()
"""
def __init__(self, message: str, options: List[str]) -> None:
"""Create a new multi-select prompt.
Args:
message: The selection prompt message
options: Non-empty list of options to choose from
Raises:
RuntimeError: If options list is empty
"""
...
def with_defaults(self, indices: List[int]) -> MultiSelectPrompt:
"""Set default selected options by indices.
Args:
indices: List of option indices to select by default (0-based)
Returns:
Self for method chaining
Raises:
RuntimeError: If any index is out of range
"""
...
def with_help_message(self, help: str) -> MultiSelectPrompt:
"""Set help message displayed below the prompt.
Args:
help: The help text
Returns:
Self for method chaining
"""
...
def with_page_size(self, size: int) -> MultiSelectPrompt:
"""Set how many options are visible at once.
Args:
size: Number of options to display per page
Returns:
Self for method chaining
"""
...
def prompt(self) -> List[str]:
"""Display prompt and collect selections.
User navigates with arrow keys, toggles with Space, submits with Enter.
Returns:
List of selected option texts (may be empty)
Raises:
RuntimeError: If not TTY, IO error, or canceled
"""
...
def prompt_skippable(self) -> Optional[List[str]]:
"""Display prompt allowing user to skip with ESC.
Returns:
List of selections or None if skipped
Raises:
RuntimeError: If not TTY or IO error
"""
...
# ============================================================================
# INT PROMPT
# ============================================================================
class IntPrompt:
"""64-bit signed integer input prompt.
Parses user input as i64 integer with validation.
All builder methods return Self for method chaining.
Example:
count = IntPrompt("Count:").with_default(5).with_help_message("1-100").prompt()
"""
def __init__(self, message: str) -> None:
"""Create a new integer prompt.
Args:
message: The prompt message
"""
...
def with_default(self, default: int) -> IntPrompt:
"""Set default value returned if user presses Enter.
Args:
default: The default integer value
Returns:
Self for method chaining
"""
...
def with_help_message(self, help: str) -> IntPrompt:
"""Set help message displayed below the prompt.
Args:
help: The help text
Returns:
Self for method chaining
"""
...
def prompt(self) -> int:
"""Display prompt and collect integer input.
Returns:
The parsed integer value
Raises:
RuntimeError: If not TTY, IO error, parse error, or canceled
"""
...
def prompt_skippable(self) -> Optional[int]:
"""Display prompt allowing user to skip with ESC.
Returns:
The parsed integer or None if skipped
Raises:
RuntimeError: If not TTY, IO error, or parse error
"""
...
# ============================================================================
# FLOAT PROMPT
# ============================================================================
class FloatPrompt:
"""64-bit float input prompt.
Parses user input as f64 floating point number with validation.
All builder methods return Self for method chaining.
Example:
price = FloatPrompt("Price: $").with_default(9.99).prompt()
"""
def __init__(self, message: str) -> None:
"""Create a new float prompt.
Args:
message: The prompt message
"""
...
def with_default(self, default: float) -> FloatPrompt:
"""Set default value returned if user presses Enter.
Args:
default: The default float value
Returns:
Self for method chaining
"""
...
def with_help_message(self, help: str) -> FloatPrompt:
"""Set help message displayed below the prompt.
Args:
help: The help text
Returns:
Self for method chaining
"""
...
def prompt(self) -> float:
"""Display prompt and collect float input.
Returns:
The parsed float value
Raises:
RuntimeError: If not TTY, IO error, parse error, or canceled
"""
...
def prompt_skippable(self) -> Optional[float]:
"""Display prompt allowing user to skip with ESC.
Returns:
The parsed float or None if skipped
Raises:
RuntimeError: If not TTY, IO error, or parse error
"""
...
# ============================================================================
# DATE SELECT PROMPT
# ============================================================================
class DateSelectPrompt:
"""Interactive date selection prompt.
Opens an interactive calendar for user to select a date.
Returns date as string in YYYY-MM-DD format.
All builder methods return Self for method chaining.
Example:
date_str = DateSelectPrompt("Meeting date:").prompt()
"""
def __init__(self, message: str) -> None:
"""Create a new date selection prompt.
Args:
message: The prompt message
"""
...
def with_help_message(self, help: str) -> DateSelectPrompt:
"""Set help message displayed below the prompt.
Args:
help: The help text
Returns:
Self for method chaining
"""
...
def prompt(self) -> str:
"""Display calendar and collect date selection.
User navigates calendar and selects date with Enter.
Returns:
Selected date as string in YYYY-MM-DD format
Raises:
RuntimeError: If not TTY, IO error, or canceled
"""
...
def prompt_skippable(self) -> Optional[str]:
"""Display calendar allowing user to skip with ESC.
Returns:
Date string in YYYY-MM-DD format or None if skipped
Raises:
RuntimeError: If not TTY or IO error
"""
...
# ============================================================================
# EDITOR PROMPT
# ============================================================================
class EditorPrompt:
"""Multi-line text editor prompt.
Opens the system text editor for user to write longer text.
Editor used is determined by EDITOR environment variable.
All builder methods return Self for method chaining.
Example:
text = EditorPrompt("Write message:").prompt()
"""
def __init__(self, message: str) -> None:
"""Create a new editor prompt.
Args:
message: The prompt message
"""
...
def with_help_message(self, help: str) -> EditorPrompt:
"""Set help message displayed below the prompt.
Args:
help: The help text
Returns:
Self for method chaining
"""
...
def prompt(self) -> str:
"""Open editor and collect text input.
Returns:
The text entered in editor
Raises:
RuntimeError: If not TTY, IO error, or canceled
"""
...
def prompt_skippable(self) -> Optional[str]:
"""Open editor allowing user to skip with ESC.
Returns:
The entered text or None if skipped
Raises:
RuntimeError: If not TTY or IO error
"""
...
# ============================================================================
# ONE-LINER FUNCTIONS
# ============================================================================
def prompt_text(message: str) -> str:
"""Quick text input one-liner.
Args:
message: The prompt message
Returns:
The user's input text
Raises:
RuntimeError: If not TTY, IO error, or canceled
"""
...
def prompt_secret(message: str) -> str:
"""Quick password input one-liner.
Doesn't echo input to terminal.
Args:
message: The prompt message
Returns:
The entered password
Raises:
RuntimeError: If not TTY, IO error, or canceled
"""
...
def prompt_confirmation(message: str) -> bool:
"""Quick yes/no confirmation one-liner.
Args:
message: The yes/no question
Returns:
True for yes, False for no
Raises:
RuntimeError: If not TTY, IO error, or canceled
"""
...
def prompt_int(message: str) -> int:
"""Quick i64 integer input one-liner.
Args:
message: The prompt message
Returns:
The parsed integer
Raises:
RuntimeError: If not TTY, IO error, parse error, or canceled
"""
...
def prompt_float(message: str) -> float:
"""Quick f64 float input one-liner.
Args:
message: The prompt message
Returns:
The parsed float
Raises:
RuntimeError: If not TTY, IO error, parse error, or canceled
"""
...
def prompt_u32(message: str) -> int:
"""Quick u32 unsigned integer input one-liner.
Args:
message: The prompt message
Returns:
The parsed u32 value as int
Raises:
RuntimeError: If not TTY, IO error, parse error, or canceled
"""
...
def prompt_u64(message: str) -> int:
"""Quick u64 unsigned integer input one-liner.
Args:
message: The prompt message
Returns:
The parsed u64 value as int
Raises:
RuntimeError: If not TTY, IO error, parse error, or canceled
"""
...
def prompt_f32(message: str) -> float:
"""Quick f32 32-bit float input one-liner.
Args:
message: The prompt message
Returns:
The parsed f32 value as float
Raises:
RuntimeError: If not TTY, IO error, parse error, or canceled
"""
...
def prompt_f64(message: str) -> float:
"""Quick f64 64-bit float input one-liner.
Args:
message: The prompt message
Returns:
The parsed f64 value as float
Raises:
RuntimeError: If not TTY, IO error, parse error, or canceled
"""
...
def prompt_date(message: str) -> str:
"""Quick date selection one-liner.
Args:
message: The prompt message
Returns:
Selected date as string in YYYY-MM-DD format
Raises:
RuntimeError: If not TTY, IO error, or canceled
"""
...