How to create "Headline Generator" ?

smartstud55

Newbie
Joined
Jul 20, 2017
Messages
17
Reaction score
12
Hello guys and gals,
any good script for headline generators like this one:
https://www.title-generator.com/
I'm looking for tutorials or scripts.
Thank you.
 
You can just have a file filled with stuff like
Code:
How We Improved Our [REPLACE] In One Week(Month, Day)
Could This Report Be The Definitive Answer To Your [REPLACE]?
Why Some People Almost Always Make/Save Money With [REPLACE]
Fast-Track Your [REPLACE]
...

Then loop through all of the lines and replace the "[REPLACE]" with your keywords, something like:
Code:
for line in lines:
    print(line.replace("[REPLACE]", YourKeyword))
 
As @Grudge above has said, you can scrape the list from that site, put a placeholder where the keywords will be and just replace the words. Also, if you have a copy of GSA, there will be a file named 'titlegen.dat' in the program's folder that has a massive spintax of titles you can use.
 
Back
Top