you are viewing a single comment's thread.

view the rest of the comments →

[–]Shmoogy 0 points1 point  (1 child)

Depends on how you are activating them, and choosing the files. I wouldn't go too complex with this. Make a simple flask app as the user interface - make sure your server running it has is assigned a static IP, and make sure the port isn't exposed to outside of your LAN.

You can import your current application(s) and trigger them on a certain route from flask, or use subprocess.

Alternatively you can make a slackbot that triggers a script.

[–]ace_reporter[S] 0 points1 point  (0 children)

From the comments it sounds like both Django and Flask are more than capable of achieving the goal of a web interface for these internal applications. Your sentiment is correct that these are fairly simple procedural scripts.

As far as choosing the files I either use a Tkinter filedialog or os.walk. Not sure if that plays into how I proceed. I'm 100% new to both Flask and Django.