This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
π Morning 25 commits βββββββββββββββββββββ 18.2% | |
π Daytime 21 commits βββββββββββββββββββββ 15.3% | |
π Evening 34 commits βββββββββββββββββββββ 24.8% | |
π Night 57 commits βββββββββββββββββββββ 41.6% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
from bs4 import BeautifulSoup as bs | |
import urllib.request | |
import re | |
url = 'https://www.leagueoflegends.com/en-us/champions/' | |
r = requests.get(url) | |
soup = bs(r.text, "html.parser") |