# ORIGINAL CREATOR: Luca Garofalo (Lucksi)1# AUTHOR: Luca Garofalo (Lucksi)2# Copyright (C) 2021-2023 Lucksi <[email protected]>3# License: GNU General Public License v3.045import random6from configparser import ConfigParser789class proxy:1011nomefile = "Configuration/Configuration.ini"12Parser = ConfigParser()13Parser.read(nomefile)14Proxy_file = Parser["Settings"]["Proxy_List"]15f = open(Proxy_file, "r")16value = f.readlines()17f.close()18choice1 = random.choice(value)19choice2 = choice1.split(":", 1)20choice3 = choice2[0]2122final_proxis = {23'http': "//" + choice1,24'https': "//" + choice1,25}262728