pip install newspaper3k
from newspaper import Article def myfun(): news = Article("https://indianexpress.com//article//technology//gadgets//apple-discontinues-its-last-ipod-model-7910720") news.download() news.parse() print(news.title) if __name__=="__main__": myfun()
End of an Era: Apple discontinues its last iPod model
from newspaper import Article def myfun(): news = Article("https://indianexpress.com//article//technology//gadgets//apple-discontinues-its-last-ipod-model-7910720") news.download() news.parse() print(news.text) if __name__=="__main__": myfun()
Apple Inc.’s iPod, a groundbreaking device that upended the music and electronics industries more than two decades ago, is no more. The company announced Tuesday that it would discontinue the iPod Touch, the last remnant of a product line that first went on sale in October 2001. The touch-screen model, which launched in 2007, will remain on sale until supplies run out. Apple released dozens of versions of the iPod over the years, but the product was gradually eclipsed by its other devices, especially the iPhone. That led the company to begin phasing out models in 2014. At the time, the company stopped making the iPod classic, a version with a click wheel and small screen that was most similar to the original version. In 2017, Apple stopped making its smallest music players, the iPod Nano and iPod Shuffle.
from newspaper import Article def myfun(): news = Article("https://indianexpress.com//article//technology//gadgets//apple-discontinues-its-last-ipod-model-7910720") news.download() news.parse() print(news.publish_date) if __name__=="__main__": myfun()
2022-05-11 09:29:17+05:30