Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 520 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 520 Bytes

ICONCLASS

A multilingual subject classification system for cultural content For more information see: http://www.iconclass.org/

Made by Hans Brandhorst [email protected] & Etienne Posthumus [email protected]

...with lots of support from a global cast of many, many people since 1972.

Example usage:

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))