ddionrails / testsuite

DDI on Rails - testsuite
0 stars 0 forks source link

Import csv and json #4

Closed mhebing closed 8 years ago

mhebing commented 8 years ago
import json
import pandas as pd

data = pd.read_csv("xyz.csv")

with open("xyz.json") as file:
    metadata = file.read()
metadata = json.loads(metadata)