mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-05-18 15:11:28 +00:00
* Replace dependency `requests` with `httpx` Fixes #12742 Signed-off-by: Lim, Lukaz Wei Hwang <lukaz.wei.hwang.lim@intel.com> * updating DIRECTORY.md * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Signed-off-by: Lim, Lukaz Wei Hwang <lukaz.wei.hwang.lim@intel.com> Co-authored-by: Lim, Lukaz Wei Hwang <lukaz.wei.hwang.lim@intel.com> Co-authored-by: cclauss <cclauss@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
49 lines
1.3 KiB
Python
49 lines
1.3 KiB
Python
# /// script
|
|
# requires-python = ">=3.13"
|
|
# dependencies = [
|
|
# "beautifulsoup4",
|
|
# "httpx",
|
|
# ]
|
|
# ///
|
|
|
|
import httpx
|
|
from bs4 import BeautifulSoup
|
|
|
|
"""
|
|
Get the HTML code of finance yahoo and select the current qsp-price
|
|
Current AAPL stock price is 228.43
|
|
Current AMZN stock price is 201.85
|
|
Current IBM stock price is 210.30
|
|
Current GOOG stock price is 177.86
|
|
Current MSFT stock price is 414.82
|
|
Current ORCL stock price is 188.87
|
|
"""
|
|
|
|
|
|
def stock_price(symbol: str = "AAPL") -> str:
|
|
"""
|
|
>>> stock_price("EEEE")
|
|
'- '
|
|
>>> isinstance(float(stock_price("GOOG")),float)
|
|
True
|
|
"""
|
|
url = f"https://finance.yahoo.com/quote/{symbol}?p={symbol}"
|
|
yahoo_finance_source = httpx.get(
|
|
url, headers={"USER-AGENT": "Mozilla/5.0"}, timeout=10, follow_redirects=True
|
|
).text
|
|
soup = BeautifulSoup(yahoo_finance_source, "html.parser")
|
|
|
|
if specific_fin_streamer_tag := soup.find("span", {"data-testid": "qsp-price"}):
|
|
return specific_fin_streamer_tag.get_text()
|
|
return "No <fin-streamer> tag with the specified data-testid attribute found."
|
|
|
|
|
|
# Search for the symbol at https://finance.yahoo.com/lookup
|
|
if __name__ == "__main__":
|
|
from doctest import testmod
|
|
|
|
testmod()
|
|
|
|
for symbol in "AAPL AMZN IBM GOOG MSFT ORCL".split():
|
|
print(f"Current {symbol:<4} stock price is {stock_price(symbol):>8}")
|