Why should you not automate tasks where that is natural? Isn't that a central factor in evolution? Example: I want the pure number table of this
http://primes.utm.edu/lists/small/10000.txt
page printed on the screen and / or saved to a database.
Why should I not do it by this simple python
Code:
file = urllib.request.urlopen('http://primes.utm.edu/lists/small/10000.txt')
primes = file.read().decode("utf8")
my_primes = []
for i,line in enumerate(primes.split('\n')):
if i > 3 and i < 1004:
temp = ((int(item) for item in line.split()))
for i in temp:
my_primes.append(i)
print (my_primes)
code? It is more obvious when you wan't to strip more text and / or markup from a page / site. I think it is similar for SEO and almost any online business. Automate where it is natural like testing the whole SEO element of a site. There are already many such tools online, some better than others and some spammy. Avoid the last group by all means if you wan't a long life for your SEO or related business.