[Free] Random Text Spinner [Free]

MrNiceTea

Registered Member
Joined
Dec 14, 2014
Messages
67
Reaction score
28
So here is my second try to publish this tool..
It basically reads a Text File and spins the words randomly and puts that out in another Text File.

This would be useful if you are cloning content and you don't want to get the "duplicate content" message by google and get deranked due to that.
You can run the executable with "spinner.exe yourfilename.txt"
An example of the output is in the image below:
original file: test.txt
output file: out.txt

UCo5ZzM.png


I guess most of you guys don't have python installed so i created an executable. You can scan, sandboxie, whatever it. It's clean
Download:
https://www.sendspace.com/file/73jv35
Virustotal Scan: https://www.virustotal.com/de/file/9d07d4aa79bf0684a9f8907e4644eab334d38165bb911fe4d0edcfdd79429af3/analysis/1425313850/
For those of you who do have python installed here is the source code, very simple, very small:
Code:
import random
import sys
words = list()
out = open('out.txt','w')
with open(sys.argv[1],'r') as f:
    for line in f:
        for word in line.split():
           words.append(word)
random.shuffle(words)
for i in words:
    out.write(i+' ')
out.close()

Hope i helped someone!
 
Last edited:
The reason it probably got deleted the first time is because you need to add a scan from Virus Total when you post files here.

Also, the link to the exe doesn't work.
 
Yes you helped!!
Thanks a lot :)
But its not getting downloading :(
Is it with me now?
 
The reason it probably got deleted the first time is because you need to add a scan from Virus Total when you post files here.

Also, the link to the exe doesn't work.
Oh, okay thanks. Just updated!
 
Do you know if it can work with other language ? Or english only ?
 
It doesn't work for me? i get

3a38e12e09f874a04b9599d2defd2fe9.png

In the log i get

Traceback (most recent call last):
File "spinner.py", line 5, in <module>
IndexError: list index out of range
 
Do you know if it can work with other language ? Or english only ?
from the looks of it the language doesn't matter, it doesn't "read" the content, only randomly mixing the words in a line
 
Back
Top