File: example.py

package info (click to toggle)
python-agate-excel 0.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 816 kB
  • sloc: python: 534; makefile: 126
file content (14 lines) | stat: -rwxr-xr-x 207 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python

import agate

import agateexcel

table = agate.Table.from_xls('examples/test.xls')

print(table)

table = agate.Table.from_xlsx('examples/test.xlsx')

print(table)
table.print_table()