Code Input
info
This widget is deprecated. Use the Code Input widget instead.
Accepts code input with syntax highlighting
Examples
Basic Example
The following example demonstrate some of the available functionality for read_code
from abstra.forms import read_code
ans = read_code(
"Show me the code!",
language="c",
initial_value="""\
#include<stdio.h>
int main(int argc, char** argv) {
char name[256];
scanf("%s", name);
printf("%s, here is", name);
return 0;
}""",
)
Parameters
Name | Description | Type |
---|---|---|
label | The label to display to the user | str |
initial_value | The initial value to display to the user. Defaults to "". | str |
language | The programming language. Defaults to None. | str |
disabled | whether the input is disabled. Defaults to False. | bool |
required | Whether the input is required or not eg. "this field is required". Defaults to True. | Union[bool, str] |
hint | A tooltip displayed to the user. Defaults to None. | str |
full_width | Whether the input should use full screen width. Defaults to False. | bool |
button_text | What text to display on the button when the widget is not part of a Page. Defaults to 'Next'. | str |
Return Values
Type | Description |
---|---|
str | The value entered by the user |