commit 7b81f7177df34574be101603deda19ac6acff090 Author: nix Date: Mon Mar 24 12:50:09 2025 +0000 Subir archivos a "/" 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