Example #1
0
from samsung.miner import Samsung
if __name__ == '__main__':
    f = Samsung.read_file()
    #print(f)

    Samsung.extract_hangeul(f)
Example #2
0
from samsung.miner import Samsung

if __name__ == '__main__':
    texts1 = Samsung.read_file()
    texts2 = Samsung.extract_hangul(texts1)
    token1 = Samsung.change_token(texts2)
    texts3 = Samsung.process_noun(token1)
    texts4 = Samsung.process_stopword(texts3)
    Samsung.show_wordcloud(texts4)
Example #3
0
from samsung.miner import Samsung

if __name__ == '__main__':
    f = Samsung.read_file()
    t = Samsung.extract_hangeul(f)
    Samsung.change_token(t)
Example #4
0
from samsung.miner import Samsung

if __name__ == '__main__':
    f = Samsung.read_file()
    extracted = Samsung.extract_kor(f)
    Samsung.change_token(extracted)
Example #5
0
from samsung.miner import Samsung
if __name__ == '__main__':
    Samsung()