API Reference
MetaKernel
metakernel.MetaKernel
Bases: Kernel
The base MetaKernel class.
Source code in metakernel/_metakernel.py
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 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 | |
Functions
run_as_main(*args: Any, **kwargs: Any) -> None
classmethod
Launch or install a metakernel.
Modules implementing a metakernel subclass can use the following lines:
if __name__ == '__main__':
MetaKernelSubclass.run_as_main()
Source code in metakernel/_metakernel.py
125 126 127 128 129 130 131 132 133 134 135 | |
makeSubkernel(kernel: MetaKernel) -> None
Run this method in an IPython kernel to set this kernel's input/output settings.
Source code in metakernel/_metakernel.py
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 | |
set_variable(name: str, value: Any) -> None
Set a variable to a Python-typed value.
Source code in metakernel/_metakernel.py
245 246 247 248 249 | |
get_variable(name: str) -> Any
Lookup a variable name and return a Python-typed value.
Source code in metakernel/_metakernel.py
251 252 253 254 255 | |
repr(item: Any) -> str
The repr of the kernel.
Source code in metakernel/_metakernel.py
257 258 259 | |
get_usage() -> str
Get the usage statement for the kernel.
Source code in metakernel/_metakernel.py
261 262 263 | |
get_kernel_help_on(info: dict[str, Any], level: int = 0, none_on_fail: bool = False) -> str | None
Get help on an object. Called by the help magic.
Source code in metakernel/_metakernel.py
265 266 267 268 269 270 271 272 | |
handle_plot_settings() -> None
Handle the current plot settings
Source code in metakernel/_metakernel.py
274 275 276 | |
get_local_magics_dir() -> str
Returns the path to local magics dir (eg ~/.ipython/metakernel/magics)
Source code in metakernel/_metakernel.py
278 279 280 281 282 283 | |
get_completions(info: dict[str, Any]) -> list[str]
Get completions from kernel based on info dict.
Source code in metakernel/_metakernel.py
285 286 287 288 289 | |
do_execute_direct(code: str, silent: bool = False) -> Any
Execute code in the kernel language.
Source code in metakernel/_metakernel.py
291 292 293 294 295 | |
do_execute_file(filename: str) -> Any
Default code for running a file. Just opens the file, and sends the text to do_execute_direct.
Source code in metakernel/_metakernel.py
297 298 299 300 301 302 303 | |
do_execute_meta(code: str) -> Any
Execute meta code in the kernel. This uses the execute infrastructure but allows JavaScript to talk directly to the kernel bypassing normal processing.
When responding to the %%debug magic, the step and reset meta commands can answer with a string in the format:
"highlight: [start_line, start_col, end_line, end_col]"
for highlighting expressions in the frontend.
Source code in metakernel/_metakernel.py
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 | |
initialize_debug(code: str) -> str
This function is used with the %%debug magic for highlighting lines of code, and for initializing debug functions.
Return the empty string if highlighting is not supported.
Source code in metakernel/_metakernel.py
329 330 331 332 333 334 335 336 337 | |
do_function_direct(function_name: str, arg: Any) -> Any
Call a function in the kernel language with args (as a single item).
Source code in metakernel/_metakernel.py
339 340 341 342 343 344 | |
restart_kernel() -> None
Restart the kernel
Source code in metakernel/_metakernel.py
346 347 348 | |
do_execute(code: Any, silent: Any = False, store_history: Any = True, user_expressions: Any = None, allow_stdin: Any = False, *, cell_meta: Any = None, cell_id: Any = None) -> Any
async
Handle code execution.
https://jupyter-client.readthedocs.io/en/stable/messaging.html#execute
Source code in metakernel/_metakernel.py
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 | |
post_execute(retval: Any, code: str, silent: bool) -> None
async
Post-execution actions
Handle special kernel variables and display response if not silent.
Source code in metakernel/_metakernel.py
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 | |
do_history(hist_access_type: str | None, output: str | None, raw: bool | None, session: Any = None, start: int | None = None, stop: int | None = None, n: int | None = None, pattern: Any = None, unique: bool = False) -> dict[str, str | list[Any]]
async
Access history at startup.
https://jupyter-client.readthedocs.io/en/stable/messaging.html#history
Source code in metakernel/_metakernel.py
556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 | |
do_shutdown(restart: bool) -> dict[str, Any]
async
Shut down the app gracefully, saving history.
https://jupyter-client.readthedocs.io/en/stable/messaging.html#kernel-shutdown
Source code in metakernel/_metakernel.py
577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 | |
do_is_complete(code: str) -> dict[str, str]
async
Given code as string, returns dictionary with 'status' representing whether code is ready to evaluate. Possible values for status are:
'complete' - ready to evaluate 'incomplete' - not yet ready 'invalid' - invalid code 'unknown' - unknown; the default unless overridden
Optionally, if 'status' is 'incomplete', you may indicate an indentation string.
Example:
return {'status' : 'incomplete',
'indent': ' ' * 4}
https://jupyter-client.readthedocs.io/en/stable/messaging.html#code-completeness
Source code in metakernel/_metakernel.py
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 | |
do_complete(code: str, cursor_pos: int) -> dict[str, Any]
async
Handle code completion for the kernel.
https://jupyter-client.readthedocs.io/en/stable/messaging.html#completion
Source code in metakernel/_metakernel.py
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 | |
do_inspect(code: str, cursor_pos: int, detail_level: int = 0, omit_sections: Any = ()) -> dict[str, Any] | None
async
Object introspection.
https://jupyter-client.readthedocs.io/en/stable/messaging.html#introspection
Source code in metakernel/_metakernel.py
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 | |
clear_output(wait: bool = False) -> None
async
Clear the output of the kernel.
Source code in metakernel/_metakernel.py
728 729 730 | |
DisplayData(data: dict[str, Any], metadata: dict[str, Any] | None = None) -> None
Display a raw MIME bundle directly without going through IPython's formatter.
Use this when your kernel produces display data in MIME format directly,
rather than Python objects with _repr_*_ methods. This is the recommended
approach for non-Python kernels (e.g. C++, Julia) that generate rich output.
Args:
data: A dict mapping MIME types to content.
Example: {'text/html': '<b>hello</b>', 'text/plain': 'hello'}
metadata: Optional dict of per-MIME-type metadata.
Example::
kernel.DisplayData(
{'text/html': '<b>Rich output</b>', 'text/plain': 'Rich output'},
metadata={'text/html': {'isolated': True}},
)
Source code in metakernel/_metakernel.py
732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 | |
Display(*objects: Any, **kwargs: Any) -> None
Display one or more objects using rich display.
Supports a clear_output keyword argument that clears the output before displaying.
If an object is a dict whose keys are all MIME types (strings containing /),
it is treated as a raw MIME bundle and sent directly — equivalent to calling
:meth:DisplayData.
See https://ipython.readthedocs.io/en/stable/config/integrating.html?highlight=display#rich-display
Source code in metakernel/_metakernel.py
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 | |
Print(*objects: Any, **kwargs: Any) -> None
Print objects to the iopub stream, separated by sep and followed by end.
Items can be strings or Widget instances.
Source code in metakernel/_metakernel.py
797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 | |
Write(message: str) -> None
Write message directly to the iopub stdout with no added end character.
Source code in metakernel/_metakernel.py
816 817 818 819 820 821 822 823 | |
Error(*objects: Any, **kwargs: Any) -> None
Print objects to stdout, separated by sep and followed by end.
Objects are cast to strings.
Source code in metakernel/_metakernel.py
825 826 827 828 829 830 831 832 833 834 835 836 | |
Error_display(*objects: Any, **kwargs: Any) -> None
Print objects to stdout is they area strings, separated by sep and followed by end.
All other objects are rendered using the Display method
Objects are cast to strings.
Source code in metakernel/_metakernel.py
838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 | |
schedule_display_output(callback: Callable[[], None]) -> None
Schedule a display output callback to run on the kernel's main IO loop.
Use this to send output to the frontend from a background thread when no execution is in progress. The callback is executed on the kernel's main IO loop, ensuring thread safety with ZMQ sockets.
Example::
import threading
import time
def background_task(kernel):
while True:
time.sleep(10)
kernel.schedule_display_output(
lambda: kernel.Print("Periodic update from background!")
)
threading.Thread(target=background_task, args=(self,), daemon=True).start()
Args:
callback: A callable that will be invoked on the main IO loop.
Typically calls methods like :meth:Print, :meth:Write,
:meth:Display, :meth:DisplayData, or :meth:Error.
Source code in metakernel/_metakernel.py
869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 | |
reload_magics() -> None
Reload all of the line and cell magics.
Source code in metakernel/_metakernel.py
904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 | |
register_magics(magic_klass: type[Magic]) -> None
Register magics for a given magic_klass.
Source code in metakernel/_metakernel.py
946 947 948 949 950 951 952 953 954 | |
call_magic(line: str) -> Magic
Given an line, such as "%download http://example.com/", parse and execute magic.
Source code in metakernel/_metakernel.py
962 963 964 965 966 967 | |
get_help_on(expr: str, level: int = 0, none_on_fail: bool = False, cursor_pos: int = -1) -> Any
Get help for an expression using the help magic.
Source code in metakernel/_metakernel.py
984 985 986 987 988 989 990 991 992 993 | |
parse_code(code: str, cursor_start: int = 0, cursor_end: int = -1) -> dict[str, Any]
Parse code using our parser.
Source code in metakernel/_metakernel.py
995 996 997 998 999 | |
Magic
metakernel.Magic
Base class to define magics for MetaKernel based kernels.
Users can redefine the default magics provided by Metakernel by creating a module with the exact same name as the Metakernel magic.
For example, you can override %matplotlib in your kernel by writing a new magic inside magics/matplotlib_magic.py
Source code in metakernel/magic.py
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 | |
Functions
get_completions(info: dict[str, Any]) -> list[str]
Get completions based on info dict from magic.
Source code in metakernel/magic.py
133 134 135 136 137 | |
option
metakernel.option(*args: Any, **kwargs: Any) -> Callable[[_F], _F]
Return decorator that adds a magic option to a function.
Source code in metakernel/magic.py
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | |
ProcessMetaKernel
metakernel.ProcessMetaKernel
Bases: MetaKernel
Source code in metakernel/process_metakernel.py
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 | |
Functions
do_execute_direct(code: str, silent: bool = False) -> TextOutput | None
Execute the code in the subprocess.
Source code in metakernel/process_metakernel.py
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 | |
check_exitcode() -> tuple[int, None]
Return (1, ["trace"]) if error.
Source code in metakernel/process_metakernel.py
151 152 153 154 155 | |
makeWrapper() -> REPLWrapper
In this method the REPLWrapper is created and returned. REPLWrapper takes the name of the executable, and arguments describing the executable prompt:
return REPLWrapper('bash', orig_prompt, prompt_change, prompt_cmd=prompt_cmd, extra_init_cmd=extra_init_cmd)
The parameters are:
:param orig_prompt: What the original prompt is (or is forced to be by prompt_cmd).
:param prompt_cmd: Used when the prompt is not printed by default (happens on Windows) to print something that we can search for.
:param prompt_change: Used to set the PS1/PS2 equivalents to something that is easier to tell apart from everything else, make sure it is a string with {0} and {1} in it for the PS1/PS2 fill-ins.
See metakernel.replwrap.REPLWrapper for more details.
Source code in metakernel/process_metakernel.py
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 | |
do_shutdown(restart: bool) -> dict[str, str]
async
Shut down the app gracefully, saving history.
Source code in metakernel/process_metakernel.py
185 186 187 188 189 190 191 192 193 194 | |
restart_kernel() -> None
Restart the kernel
Source code in metakernel/process_metakernel.py
196 197 198 | |
REPLWrapper
metakernel.REPLWrapper
Wrapper for a REPL.
All prompts are interpreted as regexes. If you have special
characters in the prompt, use re.escape to escape the characters.
:param cmd_or_spawn: This can either be an instance of
:class:pexpect.spawn in which a REPL has already been started,
or a str command to start a new REPL process.
:param str prompt_regex: Regular expression representing process prompt, eg ">>>" in Python.
:param str continuation_prompt_regex: Regular expression representing process continuation prompt, e.g. "..." in Python.
:param str prompt_change_cmd: Optional kernel command that sets continuation-of-line-prompts, eg PS1 and PS2, such as "..." in Python.
to something more unique. If this is None, the prompt will not be
changed. This will be formatted with the new and continuation prompts
as positional parameters, so you can use {} style formatting to
insert them into the command.
:param str new_prompt_regex: The more unique prompt to expect after the change.
:param str stdin_prompt_regex: The regex for a stdin prompt from the
child process. The prompt itself will be sent to the stdin_handler,
so any sentinel value inserted will have to be removed by the caller.
:param str extra_init_cmd: Commands to do extra initialisation, such as
disabling pagers.
:param str prompt_emit_cmd: Optional kernel command that emits the prompt
when one is not emitted by default (typically happens on Windows only)
:param bool force_prompt_on_continuation: Whether to force a prompt when
we need to interrupt a continuation prompt.
:param bool echo: Whether the child should echo, or in the case
of Windows, whether the child does echo.
:param dict extr_env: Extra env variables to send to the child.
:param list args: Additional arguments to pass to the spawned command.
Source code in metakernel/replwrap.py
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 | |
Functions
run_command(command: str, timeout: Any = None, stream_handler: Any = None, line_handler: Any = None, stdin_handler: Any = None) -> str
Send a command to the REPL, wait for and return output.
:param str command: The command to send. Trailing newlines are not needed.
This should be a complete block of input that will trigger execution;
if a continuation prompt is found after sending input, :exc:ValueError
will be raised.
:param int timeout: How long to wait for the next prompt. -1 means the
default from the :class:pexpect.spawn object (default 30 seconds).
None means to wait indefinitely.
:param func stream_handler - A function that accepts a string to print as a streaming output
:param func line_handler - A function that accepts a string to print as a line output
:param stdin_handler - A function that prompts the user for input and
returns a response.
Source code in metakernel/replwrap.py
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 | |
interrupt(continuation: bool = False) -> Any
Interrupt the process and wait for a prompt.
Returns:
| Type | Description |
|---|---|
The value up to the prompt.
|
|
Source code in metakernel/replwrap.py
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 | |