python
import newspaper
from textblob import TextBlob
def get_article_from_url(url):
article = newspaper.Article(url)
article.download()
article.parse()
return article.text
def analyze_sentiment(text):
blob = TextBlob(text)
sentiment = blob.sentiment.polarity
if sentiment > 0:
elif sentiment < 0:
else:
url = "https://example.com/news-article"
article_text = get_article_from_url(url)
sentiment = analyze_sentiment(article_text)