I have a series of Python scripts that I am running from my C# program.

I use the CreateScriptSourceFromFile() method to read in the file and
execute it.

I would like, however, to move these scripts to a databse file -- simply a
large memo/text field containing the full script, and then execute them from
there instead of the file (to simplify my management).

I thought I could just convert the python file to a string, save it, and
then bring it back with CreateScriptSourceFromString() instead. But
the parser doesn't seem to like the embedded \r, \n. \t, etc.

Is there a simple way of accomplishing this that is escaping me? Has anyone
ever done anything similar?

Thanks!

-Mark Grice
_______________________________________________
Users mailing list
[email protected]
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Reply via email to