This file contains hidden or 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 csv | |
import requests | |
import os | |
import argparse | |
# Function to read CSV file and extract application name and version | |
def read_csv(file_path): | |
apps = [] | |
with open(file_path, 'r') as file: | |
reader = csv.reader(file) |