Write a python program to access news using python

Write a python program to access news using python

Program
Note: Install newspaper3k module
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()


Output:

End of an Era: Apple discontinues its last iPod model


Program
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()



Output:

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.


Program
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()




Output:

2022-05-11 09:29:17+05:30



More Questions


51 . Write a python program to access news using python
52 . Write a python program to print lowercase names
53 . Write a python program to Find Index Using Enumerate
54 . Write a python program to checking if a string is empty or not ?
55 . Write a python program to merge nested lists ?
56 . Write a python program to Checking if a File Exists or Not ?
57 . Write a python program to convert uppercase strings and we want to convert them into lowercase strings and remove duplicates ?
58 . Write a python program to display list of numbers and we want to return all the numbers from the list that are divisible by 2 and remove duplicates at the same time.
59 . Write a python program to calculate average using python *args ?
60 . Write a Python program to find the area of a triangle.
61 . Write a Python program to convert kilometers to miles.



For latest job updates join Telegram Channel: https://t.me/sateeshm