-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelpers.py
More file actions
85 lines (65 loc) · 2.06 KB
/
helpers.py
File metadata and controls
85 lines (65 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import csv
import datetime
import pytz
import requests
import urllib
import uuid
from flask import redirect, render_template, request, session
from functools import wraps
def apology(message, code=400):
"""Render message as an apology to user."""
def escape(s):
"""
Escape special characters.
https://github.com/jacebrowning/memegen#special-characters
"""
for old, new in [
("-", "--"),
(" ", "-"),
("_", "__"),
("?", "~q"),
("%", "~p"),
("#", "~h"),
("/", "~s"),
('"', "''"),
]:
s = s.replace(old, new)
return s
return render_template("apology.html", top=code, bottom=escape(message)), code
def login_required(f):
"""
Decorate routes to require login.
https://flask.palletsprojects.com/en/latest/patterns/viewdecorators/
"""
@wraps(f)
def decorated_function(*args, **kwargs):
if session.get("user_id") is None:
return redirect("/login")
return f(*args, **kwargs)
return decorated_function
import yfinance as yf # <--- Import the new library
def lookup(symbol):
"""Look up quote for symbol using yfinance."""
try:
# Create a Ticker object
ticker = yf.Ticker(symbol)
# Get the latest day's history
# period="1d" fetches the most recent available data
data = ticker.history(period="1d")
# Check if data exists (if symbol is invalid, dataframe will be empty)
if data.empty:
return None
# Extract the closing price from the last row
# We use .iloc[-1] to get the last entry (most recent)
price = data["Close"].iloc[-1]
return {
"price": price,
"symbol": symbol.upper()
}
except Exception as e:
# Print error to console for debugging, but return None to app
print(f"Error looking up {symbol}: {e}")
return None
def usd(value):
"""Format value as USD."""
return f"${value:,.2f}"