I am scraping the facebook pages data, but to access all the data I need to log in to my account I am using.
import wget
from bs4 import BeautifulSoup
url = "https://www.facebook.com/hellomeets/events"
down = wget.download(url)
f = open(down, 'r')
htmlText = "\n".join(f.readlines())
f.close()
print htmlText
How do I log in to my account and scrape all the data of pages?