[ASK] Bulk Anchor Text Creator Tool?

fc-dh

Elite Member
Joined
Oct 20, 2012
Messages
3,271
Reaction score
2,927
Is there a tool like this that can create HTML links like
Code:
<a href="http://domain"> Anchor</a>
from a list of keywords and urls, the link does only a 100 at a time, i need a couple of 1000 done on a regulair basis and you can understand that this is way too tedious to do this by hand

Thanks

Dave
 
I was using this desktop app , I'm not sure it's still working or not but you can check it out:

http://download.seoarbiter.com/anchortextgenerator/anchortextgeneratorsetup.exe
 
Here you go my man! Enjoy :) to run it, copy and paste this code into a text file and name it 'mylinkbuilder.py' and save it in a folder. Then go to command prompt, navigate to the folder there and run it with the command 'python mylinkbuilder.py'...easy if you're on Mac or Linux, you may need to Google how to run a Python program if you're on windows.

You need to have 2 files for this to run 'keywords.txt' and 'urls.txt' the files need to be in the right order obviously.

Code:
pathToFolder = "INSERT YOUR FOLDER PATH BETWEEN THESE QUOTES"

with open(pathToFolder + '/urls.txt') as urls:
    f = open(pathToFolder + '/keywords.txt', 'r')
    keywords = f.readlines()
    for idx, url in enumerate(urls):
        keyword = keywords[idx]
        linkline = '<a href=\"' + url + '\" >' + keyword  + '</a>'
        with open(pathToFolder + '/output.txt', 'a') as linkfile:
            linkfile.write(linkline + '\n')
 
OP, I'm PMing you little personal method for this. Enjoy!

-ThopHayt
 
just Excel sheet is enough to make this. PM me, I will let you know. it would be the easiest way i am sure
 
Xrumer also has one tool like this inbuilt in it. You can mix them how do you want.
 
Back
Top