-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
33 lines (26 loc) · 882 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import re
import sys
from bs4 import BeautifulSoup
import requests
def extract_content(url):
"""Given a URL, extract all the text content,
save it to a text file and return the number of
words that have been processed.
"""
webpage = requests.get(url)
soup = BeautifulSoup(webpage.content, "lxml")
content = soup.find("body").findAll("p")
count = 0
with open("content.txt", "w") as file:
for paragraph in content:
text = paragraph.get_text()
words = re.findall(r'\b\w+', text)
file.write(text)
count += len(words)
return count
if __name__ == '__main__':
print("\n--- entering python script ---")
url = sys.argv[1]
count = extract_content(url)
print("{} words have been saved to './content.txt'".format(count))
print("--- exiting python script ---\n")