Hello, I am beginning python and working on a project, and one thing I would like to be able to do is download and run a script dynamically at runtime.
The general idea is to be able to connect to a server, download a python script on demand, and run that script that was just downloaded without having to restart the program or hard code that specific script in to the program.
The program I'm working with uses Python for scripting and execution, and C++ for the other code such as rendering and math.
I would like to be able to use python to run scripts that have been downloaded from a server (for things such as user generated content).
I was wondering if that was possible, or if I should use another scripting language (possibly LUA) for that situation?
Thanks, Th3flyboy