FSA-PROJECT-CV / scrapping.py
trancongtuyetxuanthu's picture
Phase3/NhatTT: Add tools crawl data
2e20f5f
raw history blame
No virus
200 Bytes
from bs4 import BeautifulSoup
import requests
url = "https://en.wikipedia.org/wiki/List_of_largest_companies_by_revenue"
page = requests.get(url)
soup = BeautifulSoup(page.text, 'html')
print(soup)