This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Original from: github.com/CoDEmanX/ | |
import unicodedata | |
allowed = [] | |
forbidden = [] | |
folder = 'output/' # needs to be created beforehand | |
ext = '.txt' | |
for i in range(1, 256): #Windows200000 - changed 0 to 1 to avoid null character | |
letter = chr(i) |