An open API service indexing awesome lists of open source software.

https://github.com/tailhook/pyzza

A compiler of a python-like programming language, targeting the Flash platform
https://github.com/tailhook/pyzza

Last synced: 5 months ago
JSON representation

A compiler of a python-like programming language, targeting the Flash platform

Awesome Lists containing this project

README

          

To disassemble swf call ``swf`` module::

python3 -m pyzza.swf file.swf -d

This form can also strip unneeded tags, optimize bytecode, etc. Look ``--help``.

To compile python-like language (pyzza) file::

python3 -m pyzza.compile -l library.swf file.py

This produces ``file.swf``. ``library.swf`` is usually file from flex SDK,
it's contained in ``playerglobal.swc`` which you use to compile actionscript
when using ``mxmlc``. You can also add your own library.

For description of pyzza language see ``pyzza.txt``.