hggggbggjy / dnbr

0 stars 0 forks source link

import random # # Credit to @Soud69 # t.me/Soudchat # proxylist = open("proxy.txt", "r").read().splitlines proxtype = int(input("""[Proxy Type] 1) HTTP/S 2) Socks4 3) Socks5 >> """) randomproxy = random.choice(proxylist) if proxytype == 1: proxy_dict = { 'http': "http://" + randomproxy, 'https': "https://" + randomproxy } elif proxtype == 2: proxy_dict = { 'http': "socks4://" + randomproxy, 'https': "socks4://" + randomproxy } elif proxtype == 3: proxy_dict = { 'http': "socks5://" + randomproxy, 'https': "socks5://" + randomproxy } #5

Open hggggbggjy opened 3 years ago

hggggbggjy commented 3 years ago

import random

#

Credit to @Soud69

t.me/Soudchat

#

proxylist = open("proxy.txt", "r").read().splitlines proxtype = int(input("""[Proxy Type] 1) HTTP/S 2) Socks4 3) Socks5

""") randomproxy = random.choice(proxylist) if proxytype == 1: proxy_dict = { 'http': "http://" + randomproxy, 'https': "https://" + randomproxy } elif proxtype == 2: proxy_dict = { 'http': "socks4://" + randomproxy, 'https': "socks4://" + randomproxy }

elif proxtype == 3: proxy_dict = { 'http': "socks5://" + randomproxy, 'https': "socks5://" + randomproxy }