-
Updated
Oct 25, 2020 - Python
Command line interface
Before there were graphical user interfaces, command-line interfaces were used to issue commands to a computer. Programs that handle the user interface are called command language interpreters, often known as a shell. A CLI may give a user more control over the computer and programs they wish to execute.
Here are 3,201 public repositories matching this topic...
-
Updated
Oct 27, 2020 - Python
Expected Behavior
Since I set case_sensitive to False, I would expect shell completions to search without case sensitivity.
import click
from click._bashcomplete import get_choices
options = ['Paul', 'Simon', 'Art', 'Garfunkel']
@click.command()
@click.option('--opt', type=click.Choice(options))
def demo():
pass
completions = list(get_choices(demo, 'dummy', ['-
Updated
Oct 27, 2020 - Python
-
Updated
Oct 20, 2020 - Python
-
Updated
Sep 23, 2020 - Python
-
Updated
Apr 11, 2020 - Python
-
Updated
Oct 27, 2020 - Python
-
Updated
Jun 20, 2020 - Python
-
Updated
Oct 23, 2020 - Python
Hello. I use Konsole and when I send an INT signal on an empty prompt, Xonsh crashe
-
Updated
Oct 27, 2020 - Python
-
Updated
Oct 25, 2020 - Python
-
Updated
Oct 21, 2020 - Python
-
Updated
Oct 23, 2020 - Python
-
Updated
Oct 25, 2020 - Python
-
Updated
Oct 19, 2020 - Python
Describe the bug
The function typer.main.get_group is annotated as returning a click.Command which isn't wrong because a click.Group is a click.Command, but means I have to cast to group when trying to integrate with existing Click applications.
To Reproduce
Steps to reproduce the behavior with a minimum self-contained file.
Replace each part with your own scenario:
-
Updated
Jul 26, 2019 - Python
-
Updated
Oct 25, 2020 - Python
-
Updated
Sep 25, 2020 - Python
Hi, I've found the following cheatsheet :
In the README you explain that there must be an edit button in the page and a github button to access the sheet but as you can see it doesn't appear here.
Thx ;)