# pyscript The code underlying PyScript is a TypeScript/JavaScript module, which is loaded and executed by the browser. This is what loads when you include, for example, ` ``` ### pyscript.runtime.globals A proxy for the runtime's `globals()` dictionary. For example: ```html x = 42 ``` ### pyscript.runtime.name A user-supplied string for the runtime given at its creation. For user reference only - does not affect the operation of the runtime or PyScript. ### PyScript.runtime.lang A user-supplied string for the language the runtime uses given at its creation. For user reference only - does not affect the operation of the runtime or PyScript.