Hi, I want to parse an Excel file using python and the excellent xlrd library. The spreadsheet I has the following structure:
First sheet have:
No category
1 Building
2 Animals
3 People
The # column is the equivalent of other sheets name, for example sheet named 3 contains
Artists
Joaquin Sabina Spain
Silvio Rodriguez Cuba
Programmers
- Richard Stallman USA
- Dairon Medina Cuba
I want to import data in the following structure: import all categories from first page to a table named categories, the headings of others sheets in other named subcategories and names on items table.
Please HELP!! I am a noob on xlrd and I need to finish this soon for a project I am working on.