From 7b81f7177df34574be101603deda19ac6acff090 Mon Sep 17 00:00:00 2001 From: nix Date: Mon, 24 Mar 2025 12:50:09 +0000 Subject: [PATCH] Subir archivos a "/" --- modulecli.py | 14 ++++++++++++++ test.py | 4 ++++ 2 files changed, 18 insertions(+) create mode 100644 modulecli.py create mode 100644 test.py diff --git a/modulecli.py b/modulecli.py new file mode 100644 index 0000000..edacf38 --- /dev/null +++ b/modulecli.py @@ -0,0 +1,14 @@ +import click +from picomc.cli.main import picomc_cli + +def run_command(command): + try: + picomc_cli.main(args=command.split()) + except SystemExit as e: + # Handle the SystemExit exception to prevent the script from exiting + if e.code != 0: + raise + +if __name__ == "__main__": + import sys + run_command(" ".join(sys.argv[1:])) \ No newline at end of file diff --git a/test.py b/test.py new file mode 100644 index 0000000..a0db5ad --- /dev/null +++ b/test.py @@ -0,0 +1,4 @@ +import modulecli + +# Example: Run the 'play' command with version '1.16.5' +modulecli.run_command("play 1.16.5") \ No newline at end of file