I am using openpyxl library to read .xlsx files in Python. I need to read some information (title, series names etc) about charts embedded in worksheets. Documentation mentions only creating new charts, and reading existing charts is nowhere mentioned.
#!/usr/bin/env python
from openpyxl import load_workbook
wb = load_workbook("charts.xlsx")
for sheet in wb:
# wb.???