Skip to content

Commit 69f86c5

Browse files
feat: began python scraper
0 parents  commit 69f86c5

File tree

4 files changed

+99
-0
lines changed

4 files changed

+99
-0
lines changed

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"python.pythonPath": "C:\\Users\\natba\\.virtualenvs\\python2k20-NJbE7nC2\\Scripts\\python.exe"
3+
}

Pipfile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[[source]]
2+
name = "pypi"
3+
url = "https://pypi.org/simple"
4+
verify_ssl = true
5+
6+
[dev-packages]
7+
8+
[packages]
9+
requests = "*"
10+
beautifulsoup4 = "*"
11+
12+
[requires]
13+
python_version = "3.8"

Pipfile.lock

+73
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

stackoverflow.py

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import requests
2+
from bs4 import BeautifulSoup
3+
4+
res = requests.get("https://stackoverflow.com/questions")
5+
6+
soup = BeautifulSoup(res.text, "html.parser")
7+
8+
questions = soup.select(".question-summary")
9+
10+
print(questions[0].select_one('.question-hyperlink').getText())

0 commit comments

Comments
 (0)