import ftplib
import glob
import os
DOWNLOADED_FILES_LOCAL_FOLDER = "downloaded_files/"
def connect():
ftp_client = ftplib.FTP()
ftp_client.connect('test.rebex.net', 21)
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 requests | |
import argparse | |
class URLAnalyzerInterface: | |
def is_suspicious(self, url): | |
pass | |
class VirusTotalAnalyzer(URLAnalyzerInterface): | |
def __init__(self, api_key): |