I want to write a program in Clojure, which has Python runtime and takes a Python function code, and a list of arguments to this function from some client over sockets, then it adds this function to runtime, calls it with the arguments and returns the result to client.
I want to know how to:
- Create Python runtime in Clojure
- Send code in this runtime and get result in Clojure