File size: 199 Bytes
a4ab72e
 
 
 
 
 
1
2
3
4
5
6
# show_data.py
import json
c = json.load(open('data/chunks.json', encoding='utf-8'))
print(f"Chunks: {len(c)}")
print(f"Sample company: {c[0]['company']}")
print(f"Sample text: {c[0]['text'][:150]}")