Skip to content

Instantly share code, notes, and snippets.

View justini0715's full-sized avatar
🎯
Focusing

iostreamC justini0715

🎯
Focusing
View GitHub Profile
🌞 Morning 2 commits █▌░░░░░░░░░░░░░░░░░░░ 7.1%
🌆 Daytime 6 commits ████▍░░░░░░░░░░░░░░░░ 21.4%
🌃 Evening 4 commits ███░░░░░░░░░░░░░░░░░░ 14.3%
🌙 Night 16 commits ████████████░░░░░░░░░ 57.1%
@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")