This may be off topic, but it is about amazon.
For those of you with sites that try to monetize amazon, how many unique clicks (on average) do you guys get daily on your amazon links?
Python code to do what you wanted.
import re
f = open('input.txt', 'r')
f2 = open('output.txt', 'w')
for line in f:
port = re.split(': ',line)[0]
print(port)
f2.write(port)
f2.write('\n')
f.close()
f2.close()
Input file:
Output file:
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.