Skip to content
Snippets Groups Projects
Commit 52f97826 authored by Mingi Song's avatar Mingi Song
Browse files

Upload New File

parent 6464977a
No related branches found
No related tags found
No related merge requests found
import requests
from bs4 import BeautifulSoup as bs
url = "http://naver.com"
response = requests.get(url)
print(response.text)
soup = bs(response.text, 'html.parser')
a= soup.find('a','link_set')
print(a)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment