Metadata-Version: 2.5
Name: tbsbp-parser
Version: 0.0.1
Summary: Parser of Toon Boom Story Board Pro sboard project files
Project-URL: Homepage, https://github.com/PoloB/tbsbp-parser
Project-URL: Repository, https://github.com/PoloB/tbsbp-parser
Project-URL: Issues, https://github.com/PoloB/tbsbp-parser/issues
Project-URL: Changelog, https://github.com/PoloB/tbsbp-parser/releases
Author-email: Paul-Emile Buteau <paulemilebuteau@gmail.com>
License: MIT
Keywords: parser
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.9
Requires-Dist: defusedxml
Description-Content-Type: text/markdown

# tbsbp-parser
Python parser for Toon Boom Storyboard Pro project files.

Storyboard Pro .sboard files are simple XML files.
This parser build a hierarchy of objects that represents all the elements in the
project file.

Usage example:

```python
import tbsbpparser

project = tbsbpparser.parse("/path/to/your/sboard/file.sboard")

scenes = project.scenes

for scene in scenes:
    print(scene.uid)
```

The parser has been tested on files from the following Storyboard Pro versions:
* 14.20.4

If the parser does not work on your files, please issue a ticket with your 
sboard file.
