we in there

This commit is contained in:
2018-05-26 00:29:32 +02:00
parent 6df24808ba
commit 103eec25f7
417 changed files with 58032 additions and 110264 deletions

15
test.json Normal file
View File

@@ -0,0 +1,15 @@
import json
import tensorflow as ts
with open("OUTPUTFILE.json", 'r') as infile:
euhm = infile.read()
euhm = unicode(euhm, errors='ignore')
ep = json.loads(euhm.decode('utf8'))
x = 0
for index, item in enumerate(ep["Episodes"]):
print(item.keys())
# Here we have item is a dict object
#if item['Name'] == argOne: # So we can access their elements using item['key'] syntax
# print(index, "Match found")