Metadata-Version: 2.1
Name: generator3
Version: 0.1.0
Summary: Parse Scratch's large project JSONs and convert them to scratchblocks notation
Home-page: https://github.com/themysticsavages/generator3
Author: themysticsavages
License: MIT
Description: # generator3
        
        generator3 is a Python package to export Scratch sprite scripts to the well known scratchblocks syntax.
        ## Installation
        ```bash
        $ python3 -m pip install generator3
        ```
        or manually (not recommended):
        ```bash
        $ git clone https://github.com/themysticsavages/generator3
        $ cd generator3
        $ python3 setup.py install
        ```
        ## Usage
        ```python
        import generator3
        # Converts to scratchblocks and puts each sprites' scripts in a HTML file
        generator3.Generator(pid).toBlocks()
        # Serve the generated HTML
        generator3.serveHTML()
        ```
        This is still in progress so not every block will be rendered!<br>
        Made with ❤️ by themysticsavages
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
