Skip to content

Instantly share code, notes, and snippets.

@chris-lovejoy
Created May 1, 2020 12:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save chris-lovejoy/f3a858bf094878693e807870d9a000ff to your computer and use it in GitHub Desktop.
Save chris-lovejoy/f3a858bf094878693e807870d9a000ff to your computer and use it in GitHub Desktop.
Exporting information to file
def save_jobs_to_excel(jobs_list, filename):
jobs = pd.DataFrame(jobs_list)
jobs.to_excel(filename)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment