├── .gitignore ├── LICENSE ├── README.md └── scratch2py ├── __init__.py ├── __main__.py ├── sb.py └── vm.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravegnu/scratch2py/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravegnu/scratch2py/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravegnu/scratch2py/HEAD/README.md -------------------------------------------------------------------------------- /scratch2py/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /scratch2py/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravegnu/scratch2py/HEAD/scratch2py/__main__.py -------------------------------------------------------------------------------- /scratch2py/sb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravegnu/scratch2py/HEAD/scratch2py/sb.py -------------------------------------------------------------------------------- /scratch2py/vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bravegnu/scratch2py/HEAD/scratch2py/vm.py --------------------------------------------------------------------------------