Advertisement
alvations

read_daikon.py

Jun 4th, 2015
555
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. #!/usr/bin/python -*- coding: utf-8 -*-
  2.  
  3. import os, io, json
  4.  
  5. with open("daikon-v1.json") as json_file:
  6.     json_data = json.load(json_file)
  7.     for article in json_data:
  8.         print article
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement