I am creating a simple network monitoring web application in Python.
Given:
- I want to manage everything from the GUI. No requirement post-install to touch files on the host server.
- I want to be able to define custom checks in Python, and store those functions/checks in a SQLite database.
Questions:
How should I store that textarea (python function) in the SQLite database?
How do I call that function from another python script after I've pulled it out of the SQLite database?