# Extract urls from text file
url_list_file = open("crawl_list.txt", "r")
crawlList = [line for line in url_list_file]
crawlList = [url.replace('n', '') for url in crawlList]
print(crawlList)
Analytical – Honest – Passionate
# Extract urls from text file
url_list_file = open("crawl_list.txt", "r")
crawlList = [line for line in url_list_file]
crawlList = [url.replace('n', '') for url in crawlList]
print(crawlList)