![]() |
|
Any idea with my code? - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Python (https://sinister.ly/Forum-Python) +--- Thread: Any idea with my code? (/Thread-Any-idea-with-my-code) |
Any idea with my code? - D0R3K - 04-17-2019 Code: import urllib proxa = raw_input("Add http proxylist: ") file = open(proxa,'r') sor = file.readline() while sor: sor = file.readline() lines = file.read().splitlines() for i in range(len(lines)): line = lines[i] next_line = lines[i+1] next_line = file.readline() x = raw_input("Adfly link: ") proxies = {'http': sor} b = urllib.urlopen(x, proxies=proxies).read() RE: Any idea with my code? - slothic - 04-17-2019 Is there something wrong, or what and use the <code> to show code beacause it just looks messy. RE: Any idea with my code? - sad_satan - 06-28-2019 will not work without identation looks like a python blasphemy please edit |