Update caBreu.py
Browse files
caBreu.py
CHANGED
|
@@ -102,6 +102,7 @@ class caBreu(datasets.GeneratorBasedBuilder):
|
|
| 102 |
with open(filepath) as f:
|
| 103 |
data = json.load(f)
|
| 104 |
for article in data:
|
|
|
|
| 105 |
id_ = article['id']
|
| 106 |
title = article['title']
|
| 107 |
subtitle = article['subtitle']
|
|
|
|
| 102 |
with open(filepath) as f:
|
| 103 |
data = json.load(f)
|
| 104 |
for article in data:
|
| 105 |
+
import code; code.interact(local=dict(globals(), **locals()))
|
| 106 |
id_ = article['id']
|
| 107 |
title = article['title']
|
| 108 |
subtitle = article['subtitle']
|