Skip to content

Commit

Permalink
Change to https
Browse files Browse the repository at this point in the history
  • Loading branch information
mlouielu committed May 15, 2024
1 parent 5319e06 commit 9da29bf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions twstock/realtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

from twstock.proxy import get_proxies

SESSION_URL = "http://mis.twse.com.tw/stock/index.jsp"
SESSION_URL = "https://mis.twse.com.tw/stock/index.jsp"
STOCKINFO_URL = (
"http://mis.twse.com.tw/stock/api/getStockInfo.jsp?ex_ch={stock_id}&_={time}"
"https://mis.twse.com.tw/stock/api/getStockInfo.jsp?ex_ch={stock_id}&_={time}"
)

# Mock data
Expand Down
4 changes: 2 additions & 2 deletions twstock/stock.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
from codes import codes


TWSE_BASE_URL = "http://www.twse.com.tw/"
TPEX_BASE_URL = "http://www.tpex.org.tw/"
TWSE_BASE_URL = "https://www.twse.com.tw/"
TPEX_BASE_URL = "https://www.tpex.org.tw/"
DATATUPLE = namedtuple(
"Data",
[
Expand Down

0 comments on commit 9da29bf

Please sign in to comment.