Astro1111 2 I made a REALLY simple proxy list maker in Python. [hide] Instructions: It uses https://free-proxy-list.net/ so all you have to do is go on the site, copy the table into input.txt and run the program and output.txt is your final list. I'm sure just by the way this works it will work on more sites than the one I listed but I can assure you it at least works on this site. Also the main program needs to be in the same directory as input.txt for this to work. Code: fin = open('input.txt', 'r') fout = open('output.txt', 'w') for line in fin: splitLine = line.split() fout.write(f"{splitLine[0]}:{splitLine[1]}\n") [/hide] Quote Share this post Link to post Share on other sites
ghasemghasem200 2 I made a REALLY simple proxy list maker in Python. niceeeeeeeeeeeee Quote Share this post Link to post Share on other sites