Metadata-Version: 2.4
Name: py3a
Version: 2.0.0
Summary: Animated ascii art format parser
Author-email: AsciiMoth <ascii@moth.contact>
License-Expression: MIT OR Apache-2.0
License-File: LICENSE-APACHE
License-File: LICENSE-MIT
Classifier: Environment :: Console
Requires-Python: >=3.12
Description-Content-Type: text/markdown

# py3a
py3a is parser library for [animated ascii art format](https://github.com/asciimoth/3a/).  
[![3a logo](https://github.com/asciimoth/3a/blob/main/logo.webp)](https://github.com/asciimoth/3a/blob/main/logo.3a)

## Example
```py
import py3a

art = py3a.Art.from_file("apple.3a")

# Convert art to asni colored text
print(art.to_ansi_string())

# Print art back in 3a format
print(art)
```

## Related links
- [3a format spec](https://github.com/asciimoth/3a)
- [aaa tool](https://github.com/asciimoth/aaa)
- [rs3a](https://github.com/asciimoth/rs3a)
- [go3a](https://github.com/asciimoth/go3a)

## License
This project is licensed under either of

- Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or [apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0))
- MIT license ([LICENSE-MIT](LICENSE-MIT) or [opensource.org/licenses/MIT](http://opensource.org/licenses/MIT))

at your option.
