Created
March 5, 2020 08:47
-
-
Save scudette/4db9f8b8c288d7d2650acd4a5908ea9f to your computer and use it in GitHub Desktop.
Pandas PyVelociraptor interface
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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