Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions scripts/fedramp-json2csv.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usr/local/bin/python
import pandas as pd
# script to parse fedramp json into csv
# Mat Caughron April 2020
# for installation run `pip install pandas`
# first download current json from https://raw.githubusercontent.com/18F/fedramp-data/master/data/data.json
# and then run this script
df = pd.read_json (r'data.json')
export_csv = df.to_csv (r'fedramp-data.csv', index = None)