This file contains 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.9% | |
🌆 Daytime 19 commits ███░░░░░░░░░░░░░░░░░░ 14.4% | |
🌃 Evening 33 commits █████▎░░░░░░░░░░░░░░░ 25.0% | |
🌙 Night 55 commits ████████▊░░░░░░░░░░░░ 41.7% |
This file contains 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") |