In [1]:
import json

In [2]:
papers = []

In [3]:
paper = {}

In [4]:
paper["url"]="arxiv.org/abs/1508.02650"
paper["date"]=2015
paper["description"]="Steven B. Bradlow, Laura P. Schaposnik, Made Uper ; Higgs bundles and exceptional isogenies"
paper["id"]="1508.02650"
paper["authors"]=["MR304864", "MR1013453"]

papers = [paper]

In [5]:
import os
output_path = os.path.join( '..', 'arxiv', 'arxiv_papers.json')

In [ ]:
with open(output_path, 'w') as f:
    json.dump(papers, f)