Skip to content

Instantly share code, notes, and snippets.

View justini0715's full-sized avatar
🎯
Focusing

iostreamC justini0715

🎯
Focusing
View GitHub Profile
🌞 Morning 25 commits β–ˆβ–ˆβ–ˆβ–Šβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 18.2%
πŸŒ† Daytime 21 commits β–ˆβ–ˆβ–ˆβ–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 15.3%
πŸŒƒ Evening 34 commits β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 24.8%
πŸŒ™ Night 57 commits β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‹β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 41.6%
@justini0715
justini0715 / lol_champ_download.py
Created August 12, 2022 15:59 — forked from Kinetic27/lol_champ_download.py
lol champ downloader python.
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")