mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
4c75f863c8
* added current stock price * Ten lines or less
15 lines
501 B
Python
15 lines
501 B
Python
import requests
|
|
from bs4 import BeautifulSoup
|
|
|
|
|
|
def stock_price(symbol: str = "AAPL") -> str:
|
|
url = f"https://in.finance.yahoo.com/quote/{symbol}?s={symbol}"
|
|
soup = BeautifulSoup(requests.get(url).text, "html.parser")
|
|
class_ = "My(6px) Pos(r) smartphone_Mt(6px)"
|
|
return soup.find("div", class_=class_).find("span").text
|
|
|
|
|
|
if __name__ == "__main__":
|
|
for symbol in "AAPL AMZN IBM GOOG MSFT ORCL".split():
|
|
print(f"Current {symbol:<4} stock price is {stock_price(symbol):>8}")
|