Skip to content

Instantly share code, notes, and snippets.

View dj-shin's full-sized avatar
🎯
Focusing

Shin DongJin dj-shin

🎯
Focusing
  • @frendliai
  • Seoul, South Korea
View GitHub Profile
# made by ryul99 at github
from bs4 import BeautifulSoup
import requests
from tqdm import tqdm
paper_index_page = 'whole url of NeaurIPS paper list page'
print('Crawling Paper List...')
req = requests.get(paper_index_page)
html = req.text