I have a project that allows users to their python files on an environment. For safety purpose, the environment is done by PyPy's sandbox.
I also have some library code for users to use. However, I don't want them to see the source code.
Is there a way to be able to import the module, but not be able to see the module content?
Thanks!