9 lines
285 B
Python
9 lines
285 B
Python
import json
|
|
|
|
with open('/Users/dtomlinson/OneDrive - William Hill Organisation Limited'
|
|
'/Mac/git_repos/python-VM/slack-bot/traffic-scraper/'
|
|
'prd/12-10-2019_02:53:32.json', 'r') as jsonFile:
|
|
data = json.load(jsonFile)
|
|
for item in data:
|
|
print(item)
|