Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
177 views
in Technique[技术] by (71.8m points)

python - I'm got this function and it takes in the html code of wikipedia pages. It takes forever to run, any ideas how to make it more efficient?

I'm got this function and it takes in the html code of wikipedia pages. It takes forever to run, any ideas how to make it more efficient?

def wikipedia_distribution(file, clean=True):
    with bz2.open(file, encoding="utf8", mode='rt') as source_file:
        data = source_file.read()
        soup = BeautifulSoup(data, 'html')

        if clean == True:
            pages_text = [[item for item in page.get_text().split('
') if item != ''] for page in pages]
        else:
            pages_text = [str(page).split('
') for page in pages]
            
        print(2)
        # variable to save the results
        char_list = [len("".join(page)) for page in pages_text]
        print(3)
        lines_list = [len(page) for page in pages_text_clean]
        print(4)
        lines_lens = [len(line) for page in pages_text for line in page]
        print(5)
        return char_list, lines_list, lines_lens
question from:https://stackoverflow.com/questions/66050700/im-got-this-function-and-it-takes-in-the-html-code-of-wikipedia-pages-it-takes

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It seems like I made some mistakes with the variables, after fixing these the issue seems to be resolved


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...