Basic information for proxy

less than 1 minute read

read file

# Read and print
file = open(gfile, 'r')
while True:
    line = file.readline()
    if not line: break
    print(line)
file.close()

Tags:

Categories:

Updated:

Leave a comment