Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jspeed-meyers/683319e7bdb560ee4983910e158094f4 to your computer and use it in GitHub Desktop.
Save jspeed-meyers/683319e7bdb560ee4983910e158094f4 to your computer and use it in GitHub Desktop.
Create a pandas dataframe from the funder finder jsonl results
import json
import pandas as pd
with open("funder_finder_results.jsonl") as f:
df = pd.DataFrame(json.loads(line) for line in f)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment