Skip to content

Instantly share code, notes, and snippets.

@CharlyWargnier
Created February 8, 2020 17:38
Show Gist options
  • Save CharlyWargnier/4d33b7f6c80d1727cbac19445dee31e8 to your computer and use it in GitHub Desktop.
Save CharlyWargnier/4d33b7f6c80d1727cbac19445dee31e8 to your computer and use it in GitHub Desktop.
dfFiltered = df[(df['Date'] > start_date) & (df['Date'] <= end_date) & (df['httpCodeClass'].isin(myNewList))]
csvName = "csvExport2" #@param {type:"string"}
csvName = csvName + '.csv'
dfFiltered.to_csv(csvName)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment