from features.feature_extractor import check_ip_blocklist


result = check_ip_blocklist(
    "192.0.2.55",
    "data/blocklist_ips.csv"
)

print(result)
