Skip to content

Instantly share code, notes, and snippets.

@scudette
Created March 5, 2020 08:47
Show Gist options
  • Save scudette/4db9f8b8c288d7d2650acd4a5908ea9f to your computer and use it in GitHub Desktop.
Save scudette/4db9f8b8c288d7d2650acd4a5908ea9f to your computer and use it in GitHub Desktop.
Pandas PyVelociraptor interface
import pandas
from pyvelociraptor import velo_pandas
pandas.set_option('display.max_colwidth', None)
pandas.set_option('display.max_columns', None)
pandas.set_option('display.max_rows', None)
pandas.DataFrame(velo_pandas.DataFrameQuery("""
SELECT * FROM info()
"""))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment