Hacker News
Hacker News(有時縮寫為
HN
)是一個專注於電腦科學和創業的社交新聞網站。它由投資基金和新創企業育成中心Y Combinator
營運。 一般來說,可以提交的內容被定義為「任何能滿足一個人求知慾的東西」。
此筆記本涵蓋如何從 Hacker News 提取頁面數據和評論
from langchain_community.document_loaders import HNLoader
API 參考文檔:HNLoader
loader = HNLoader("https://news.ycombinator.com/item?id=34817881")
data = loader.load()
data[0].page_content[:300]
"delta_p_delta_x 73 days ago \n | next [–] \n\nAstrophysical and cosmological simulations are often insightful. They're also very cross-disciplinary; besides the obvious astrophysics, there's networking and sysadmin, parallel computing and algorithm theory (so that the simulation programs a"
data[0].metadata
{'source': 'https://news.ycombinator.com/item?id=34817881',
'title': 'What Lights the Universe’s Standard Candles?'}