[~] Refactor

This commit is contained in:
Siarhei Siniak 2021-07-29 09:41:35 +03:00
parent 7211e59945
commit fdec130fa4

@ -1790,8 +1790,18 @@ def kernel_28():
def kernel_29(): def kernel_29():
t4 = '/kaggle/working/kernel_29-poses.json' t4 = '/kaggle/working/kernel_29-poses.json'
t6 = [
t4,
'/kaggle/garbage/kernel_29-poses.json',
]
if not os.path.exists(t4): t7 = [
o
for o in t6
if os.path.exists(o)
]
if len(t7) == 0:
import json import json
import io import io
import glob import glob
@ -1814,7 +1824,7 @@ def kernel_29():
with io.open(t4, 'w') as f: with io.open(t4, 'w') as f:
f.write(json.dumps(t1)) f.write(json.dumps(t1))
with io.open(t4, 'r') as f: with io.open(t7[0], 'r') as f:
t1 = json.load(f) t1 = json.load(f)
t2 = pandas.DataFrame(t1) t2 = pandas.DataFrame(t1)