From fe03e031d87247700b72681ae5936d8cda3b2d9e Mon Sep 17 00:00:00 2001 From: Sirkeira <118860604+CirqueiraDev@users.noreply.github.com> Date: Sat, 6 Dec 2025 10:44:42 -0300 Subject: [PATCH] Refactor BuildManager and CirqueiraLover classes --- src/functions/build_manager.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/functions/build_manager.py b/src/functions/build_manager.py index 7538803..0d3ebcd 100644 --- a/src/functions/build_manager.py +++ b/src/functions/build_manager.py @@ -231,12 +231,13 @@ if __name__ == '__main__': write("[5/6] Obfuscating code...") protected_code = Tools.obfuscate_code(sk_code, compress) + warn = "# The requirements inside the payload will still need to be installed; I recommend compiling it into an .exe" base_path = file_name py_path = base_path + ".py" write(f"→ Writing output: {py_path}") with open(py_path, "w", encoding="utf-8") as f: - f.write(part1 + protected_code) + f.write(warn + '\n' + protected_code) if file_type == "py": write("✓ Build completed: .py generated successfully.") @@ -326,3 +327,4 @@ if __name__ == '__main__': write("✗ ERROR: invalid file_type") return False +