File size: 261 Bytes
11e9b5d d3f3543 11e9b5d d3f3543 9a6ad14 11e9b5d |
1 2 3 4 5 6 7 8 9 10 11 12 |
# app.py
from UI import create_interface
from interface import process_and_plot
def main():
demo = create_interface(process_and_plot)
demo.launch(share=True) # Agregar 'share=True' para crear un enlace público
if __name__ == "__main__":
main()
|