Untitled

 avatar
unknown
plain_text
a year ago
410 B
4
Indexable
def select_important_initial_columns(file):
  return pd.read_csv(file)[[
    "id",
    "ip",
    "dns",
    "tracking_method",
    "os",
    "qid",
    "title",
    "vuln_status",
    "type",
    "severity",
    "port",
    "first_detected",
    "last_detected",
    "times_detected",
    "cve_id",
    "results",
    "category",
    "associated_ags",
    "associated_tags",
    "host_id",
    "asset_id",
  ]]
Editor is loading...
Leave a Comment