├── .gitignore ├── BackgroundPlugin.py ├── README.md ├── SitePlugin.py ├── UiWebsocketPlugin.py ├── __init__.py ├── crypt.py ├── sandboxer ├── __init__.py ├── runtime.py ├── scope.py └── vmbuiltins.py ├── spawner.py ├── storage.py ├── transpilers ├── __init__.py └── py │ └── __init__.py ├── util.py └── zeroframe.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc -------------------------------------------------------------------------------- /BackgroundPlugin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloZeroNet/Plugin-BackgroundProcessing/HEAD/README.md -------------------------------------------------------------------------------- /SitePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloZeroNet/Plugin-BackgroundProcessing/HEAD/SitePlugin.py -------------------------------------------------------------------------------- /UiWebsocketPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloZeroNet/Plugin-BackgroundProcessing/HEAD/UiWebsocketPlugin.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloZeroNet/Plugin-BackgroundProcessing/HEAD/__init__.py -------------------------------------------------------------------------------- /crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloZeroNet/Plugin-BackgroundProcessing/HEAD/crypt.py -------------------------------------------------------------------------------- /sandboxer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloZeroNet/Plugin-BackgroundProcessing/HEAD/sandboxer/__init__.py -------------------------------------------------------------------------------- /sandboxer/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloZeroNet/Plugin-BackgroundProcessing/HEAD/sandboxer/runtime.py -------------------------------------------------------------------------------- /sandboxer/scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloZeroNet/Plugin-BackgroundProcessing/HEAD/sandboxer/scope.py -------------------------------------------------------------------------------- /sandboxer/vmbuiltins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloZeroNet/Plugin-BackgroundProcessing/HEAD/sandboxer/vmbuiltins.py -------------------------------------------------------------------------------- /spawner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloZeroNet/Plugin-BackgroundProcessing/HEAD/spawner.py -------------------------------------------------------------------------------- /storage.py: -------------------------------------------------------------------------------- 1 | modules = {} -------------------------------------------------------------------------------- /transpilers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /transpilers/py/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloZeroNet/Plugin-BackgroundProcessing/HEAD/transpilers/py/__init__.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloZeroNet/Plugin-BackgroundProcessing/HEAD/util.py -------------------------------------------------------------------------------- /zeroframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloZeroNet/Plugin-BackgroundProcessing/HEAD/zeroframe.py --------------------------------------------------------------------------------