Metadata-Version: 2.1
Name: iconclass
Version: 0.27
Summary: This package provides a Python interface to using ICONCLASS.
Home-page: https://iconclass.org/
License: MIT
Author: Etienne Posthumus
Author-email: ep@epoz.org
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Description-Content-Type: text/markdown

# ICONCLASS

Python package to be able to use ICONCLASS.

Example usage:

```python
from iconclass import init

ic = init()
a = ic["53A2"]

print(a)
print(repr(a))
print(a())
print(a('de'))

for child in a:
    print(child('it'))

for p in a.path():
    print(repr(p))
```

