Прочитать источник страницы из текстового файла Python

with open("file.txt") as f:
    bs = BeautifulSoup(f.read())
Nice Narwhal