6.19.6. The site frame

The _site frame_ contains data and functions which configure Interscript to a specific installation. For example, the availability of various tanglers and weavers is likely to be site specific. The specific location of the Python and Interscript systems is part of the conceptual site frame.
Start python section to interscript/frames/site.py[1 /1 ]
     1: #line 10 "site_frame.ipk"
     2: import sys
     3: class site_frame:
     4:   def __init__(self, platform):
     5:     self.platform = platform
     6:     self.python_version = sys.version[:3]
     7:     self.builtin_module_names = sys.builtin_module_names
     8:     self.python_module_search_path = sys.path
     9: 
End python section to interscript/frames/site.py[1]