You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am currently developing a project in C# and want to achieve Python integration, similar to what Lua proposes with its native C library
I want to be able to disable the CLR module as I do not want user code to access .NET classes from the Python environment
I want to only expose some classes and/or methods to the environment; opposite from the current behaviour which is to let every class be automatically exposed to the Python environment, and only specify those who are not exported to said environment
I am just testing out the library with the ExecuteSimpleString method, and I currently can do .NET imports from Python, which is what I want to prevent