SWF Parsing Utilities
Project description
PYSWF
=====
A Python library for reading and writing SWF files.
PYSWF is a Python port of Claus Wahlers *great* SWF parser https://github.com/claus/as3swf
Can't thank Claus enough!
INSTALL
=======
python setup.py install
or you might need do:
$sudo python setup.py install
DEPENDENCIES
============
- lxml
- StringIO
- Image (PIL)
You can use easy_install or pip to install these.
NOTE: this code is only tested with python 2.6
USAGE
=====
Basic example:
--------------
```python
from swf.movie import SWF
# create a file object
file = open('path/to/swf', 'rb')
# print out the SWF file structure
print SWF(file)
```
SVG export example:
-------------------
```python
from swf.movie import SWF
from swf.export import SVGExporter
# create a file object
file = open('path/to/swf', 'rb')
# load and parse the SWF
swf = SWF(file)
# create the SVG exporter
svg_exporter = SVGExporter()
# export!
svg = swf.export(svg_exporter)
# save the SVG
open('path/to/svg', 'wb').write(svg.read())
```
=====
A Python library for reading and writing SWF files.
PYSWF is a Python port of Claus Wahlers *great* SWF parser https://github.com/claus/as3swf
Can't thank Claus enough!
INSTALL
=======
python setup.py install
or you might need do:
$sudo python setup.py install
DEPENDENCIES
============
- lxml
- StringIO
- Image (PIL)
You can use easy_install or pip to install these.
NOTE: this code is only tested with python 2.6
USAGE
=====
Basic example:
--------------
```python
from swf.movie import SWF
# create a file object
file = open('path/to/swf', 'rb')
# print out the SWF file structure
print SWF(file)
```
SVG export example:
-------------------
```python
from swf.movie import SWF
from swf.export import SVGExporter
# create a file object
file = open('path/to/swf', 'rb')
# load and parse the SWF
swf = SWF(file)
# create the SVG exporter
svg_exporter = SVGExporter()
# export!
svg = swf.export(svg_exporter)
# save the SVG
open('path/to/svg', 'wb').write(svg.read())
```
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyswf-1.3.tar.gz
(36.2 kB
view details)
File details
Details for the file pyswf-1.3.tar.gz
.
File metadata
- Download URL: pyswf-1.3.tar.gz
- Upload date:
- Size: 36.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8664c33a8d9e5486fc144b6e6eb5a9264578a4f0af2ffe895655e6ce9336712 |
|
MD5 | f53d93e35f75c00ad8183cca488090e0 |
|
BLAKE2b-256 | a8944ea37e93a645036a79b2c995e6d69e285159e6d295ecb296fbfcd0235cb5 |