up vote 3 down vote favorite
2
share [g+] share [fb]

I'm interested in using Python to hack on the data in Flash swf files. There is good documentation available on the format of swf files, and I am considering writing my own Python lib to parse that data out using the standard Python struct lib.

Does anybody know of a Python project that already does this? I would also be interested in any available solutions that use Perl, Ruby, Haskell, etc.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Well, unless you're doing it for fun (in which case, go for it!), why not use Ming? It supposedly has python wrappers...

link|improve this answer
Some Ming examples in Python available here: freenet.org.nz/python/ming – Adam Bernier Mar 18 '09 at 2:04
Cool, thanks. I remember hearding about Ming ages ago for use in PHP, but I didn't realize it did Python as well. – Parappa Mar 18 '09 at 4:00
feedback

I found another option in SWF Tools. They provide a Python wrapper that supports generating SWF files in Python.

I'm not sure if either SWF Tools or Ming actually supports parsing in and modifying an existing swf file, however. Both seem geared more towards generating swf files from scratch.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.