You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
724 B
25 lines
724 B
from bs4 import BeautifulSoup
|
|
import httpx
|
|
|
|
|
|
class RedditComments:
|
|
def __init__(self, link):
|
|
page = httpx.get(link)
|
|
content = page.text
|
|
self.soup = BeautifulSoup(content)
|
|
self.commentObjects = self.soup.find_all("div", "Comment")
|
|
self.comments = []
|
|
|
|
def getHeader(self, commentObj):
|
|
headers = commentObj.find_all("a")
|
|
username = headers[0]["href"].split("/")[2]
|
|
date = headers[1].text
|
|
return username + " " + date
|
|
|
|
def getText(self, commentObj):
|
|
return commentObj.find("p").text
|
|
|
|
def getComments(self):
|
|
for co in self.commentObjects:
|
|
self.comments.append(self.getHeader(co) + "\n" + self.getText(co) + "\n")
|