Skip to content

Instantly share code, notes, and snippets.

@ShimanoN
Last active January 31, 2023 16:08
Show Gist options
  • Save ShimanoN/15714e56b441b4b112458142cc560bc2 to your computer and use it in GitHub Desktop.
Save ShimanoN/15714e56b441b4b112458142cc560bc2 to your computer and use it in GitHub Desktop.
get_newstitle.ipynb
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 2,
"id": "c5dbf9b4-b240-447e-8148-c9ef676ac6b1",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"['Massive water loss can no longer be ignored: Experts', 'Horrible crime tied to postpartum psychosis', 'Disciplining of white officer questioned in Nichols case', \"10 injured in 'targeted' drive-by shooting in Florida\", \"'Wheel of Fugitive' sheriff sued for defamation\", 'Family can’t believe what they find when they cut open their sofa', \"Family of Newlywed and Activist Decapitated at Utah's Arches National Park Awarded More Than $10M\", 'Researcher Thinks He Solved Bigfoot Mystery, And You Can Do The Math, Too', 'Israel refills the Sea of Galilee, supplying Jordan on the way', 'Tiny radioactive capsule lost in Australian outback carries the equivalent of 10 X-ray blasts as fears mount it could be picked up by passing traffic', \"Green comet C/2022 E3 (ZTF) will be closest to Earth on Feb. 1. Here's how to see it.\", 'Crimea will never again be part of Ukraine - Croatian president', \"Putin's Ally On How To Force West To Negotiate — Position Hypersonic Missiles To Hit US In 5 Minutes\", 'Massive Boulder Crashes into Hawaii Home, Narrowly Missing Woman: Watch', \"Jeep 'Death Wobble' class action settlement includes warranty extension, reimbursement\", \"Donald Trump Insults Stormy Daniels' Appearance As Hush-Money Probe Reignites\", \"Want the Max $4,555 Social Security Benefit? Here's the Salary You Need\", 'Chicago prosecutor dropping R. Kelly sex-abuse charges', \"Ukraine's drones watch as Russia throws waves of men at battle for Bakhmut\", '29-year-old woman charged for posing as teen to enroll at New Jersey high school', 'Trump investigations: Georgia prosecutor ups anticipation', 'Southwest Makes a Major Change to Its Boarding Process', 'Scientists Are Reincarnating the Woolly Mammoth to Return in 4 Years', 'Judge says Texas Attorney General Paxton must face ethics lawsuit', \"Major insurers plan to drop two car models' coverage due to thefts: report\", 'After A Woman Saw Men Messaging Each Other About Her Looks During A Work Call, She Called Them Out And Posted It On TikTok', 'In Haiti, gangs take control as democracy withers', \"Lawsuit accuses Google of firing exec after he rejected female boss's groping advances\", \"MSNBC Host Ridicules Lindsey Graham's ‘Hostage’ Video For Trump: ‘Blink Twice’\", 'Boeing will open new assembly line to build 737 Max planes']\n"
]
}
],
"source": [
"import requests\n",
"from bs4 import BeautifulSoup\n",
"\n",
"url = \"https://www.yahoo.com/news/\"\n",
"r = requests.get(url)\n",
"soup = BeautifulSoup(r.content, \"html.parser\")\n",
"\n",
"titles = []\n",
"for h3 in soup.find_all(\"h3\"):\n",
" titles.append(h3.text)\n",
"\n",
"titles"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "9378db9a-42bd-4363-9212-53b1abf342b3",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"['Massive water loss can no longer be ignored: Experts',\n",
" 'Horrible crime tied to postpartum psychosis',\n",
" 'Disciplining of white officer questioned in Nichols case',\n",
" \"10 injured in 'targeted' drive-by shooting in Florida\",\n",
" \"'Wheel of Fugitive' sheriff sued for defamation\",\n",
" 'Family can’t believe what they find when they cut open their sofa',\n",
" \"Family of Newlywed and Activist Decapitated at Utah's Arches National Park Awarded More Than $10M\",\n",
" 'Researcher Thinks He Solved Bigfoot Mystery, And You Can Do The Math, Too',\n",
" 'Israel refills the Sea of Galilee, supplying Jordan on the way',\n",
" 'Tiny radioactive capsule lost in Australian outback carries the equivalent of 10 X-ray blasts as fears mount it could be picked up by passing traffic',\n",
" \"Green comet C/2022 E3 (ZTF) will be closest to Earth on Feb. 1. Here's how to see it.\",\n",
" 'Crimea will never again be part of Ukraine - Croatian president',\n",
" \"Putin's Ally On How To Force West To Negotiate — Position Hypersonic Missiles To Hit US In 5 Minutes\",\n",
" 'Massive Boulder Crashes into Hawaii Home, Narrowly Missing Woman: Watch',\n",
" \"Jeep 'Death Wobble' class action settlement includes warranty extension, reimbursement\",\n",
" \"Donald Trump Insults Stormy Daniels' Appearance As Hush-Money Probe Reignites\",\n",
" \"Want the Max $4,555 Social Security Benefit? Here's the Salary You Need\",\n",
" 'Chicago prosecutor dropping R. Kelly sex-abuse charges',\n",
" \"Ukraine's drones watch as Russia throws waves of men at battle for Bakhmut\",\n",
" '29-year-old woman charged for posing as teen to enroll at New Jersey high school',\n",
" 'Trump investigations: Georgia prosecutor ups anticipation',\n",
" 'Southwest Makes a Major Change to Its Boarding Process',\n",
" 'Scientists Are Reincarnating the Woolly Mammoth to Return in 4 Years',\n",
" 'Judge says Texas Attorney General Paxton must face ethics lawsuit',\n",
" \"Major insurers plan to drop two car models' coverage due to thefts: report\",\n",
" 'After A Woman Saw Men Messaging Each Other About Her Looks During A Work Call, She Called Them Out And Posted It On TikTok',\n",
" 'In Haiti, gangs take control as democracy withers',\n",
" \"Lawsuit accuses Google of firing exec after he rejected female boss's groping advances\",\n",
" \"MSNBC Host Ridicules Lindsey Graham's ‘Hostage’ Video For Trump: ‘Blink Twice’\",\n",
" 'Boeing will open new assembly line to build 737 Max planes']"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"id": "b0a11d0b-4003-4534-bc22-cccb90eaae42",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.13"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment