Cree un archivo de Python e importe como biblioteca en otro archivo

# Script file: my_script.py

import my_module

my_module.hello_printer()
print("Creator:", my_module.name)
Scary Sable