mirror of
https://github.com/VinciGit00/Scrapegraph-ai.git
synced 2026-06-04 21:01:04 +08:00
16 lines
329 B
Python
16 lines
329 B
Python
"""
|
|
save_code_to_file module
|
|
"""
|
|
|
|
|
|
def save_code_to_file(code: str, filename: str) -> None:
|
|
"""
|
|
Saves the generated code to a Python file.
|
|
|
|
Args:
|
|
code (str): The generated code to be saved.
|
|
filename (str): name of the output file
|
|
"""
|
|
with open(filename, "w") as file:
|
|
file.write(code)
|