I need a unix terminal command that will boot a python interpreter without giving it access to import anything. I am aware that you can import os, and then change that path, but this would be counter productive, so I need to do it either on Python startup, or without importing anything in the python interpreter.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
Python does not have robust support for running untrusted code, but for a reasonable approximation, you can try this blog post. A more robust alternative would be to use Lua, JavaScript or TCL, all of which are carefully designed to run untrusted code in a crafted sandbox environment. |
|||
|
virtualenvto create new environment for working withpythonand I don't think there is a way to do what you want, so probablyvirtualenvis a closest approach to what you need. – Nemoden Jun 3 '11 at 1:20osmodule does what you say. – Wang Dingwei Jun 3 '11 at 1:50