Metadata-Version: 2.4
Name: light-ass
Version: 0.1.3
Summary: A lightweight library for handling ASS subtitles
Author-email: Oborozuki <oborozuk1@qq.com>
License: MIT License
Project-URL: Homepage, https://github.com/oborozuk1/light-ass
Project-URL: Repository, https://github.com/oborozuk1/light-ass.git
Project-URL: Bug Tracker, https://github.com/oborozuk1/light-ass/issues
Keywords: subtitle,ass
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Multimedia :: Video
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# light-ass
A lightweight library for handling Advanced SubStation Alpha (ASS) subtitles.

## Features
- Parse ASS subtitles effortlessly
- Check the validity of field types
- Parse ASS override tags (partial)

## Installation
```
pip install light-ass
```

## Usage
```python
import light_ass

document = light_ass.load("example.ass")
print(document.info)
print(document.styles)
print(document.events)
```

## TODO
- Support for more sections
- More methods for ASS shapes
- ASS minifier
- Support for VSFilterMod tags

## License
MIT License
