mirror of
https://github.com/kennethreitz/tablib.git
synced 2026-06-05 15:00:19 +00:00
16 lines
187 B
Python
16 lines
187 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import tablib
|
|
|
|
d = tablib.Dataset()
|
|
|
|
with open('/Users/kreitz/Desktop/test.json') as f:
|
|
d.json = f.read()
|
|
|
|
# del d[900:]
|
|
|
|
# print d.height
|
|
|
|
print len(d.ods)
|
|
|