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 3324a6d commit 26fb7a7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions twstock/codes/fetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

from twstock.proxy import get_proxies

TWSE_EQUITIES_URL = "http://isin.twse.com.tw/isin/C_public.jsp?strMode=2"
TPEX_EQUITIES_URL = "http://isin.twse.com.tw/isin/C_public.jsp?strMode=4"
TWSE_EQUITIES_URL = "https://isin.twse.com.tw/isin/C_public.jsp?strMode=2"
TPEX_EQUITIES_URL = "https://isin.twse.com.tw/isin/C_public.jsp?strMode=4"
ROW = namedtuple(
"Row", ["type", "code", "name", "ISIN", "start", "market", "group", "CFI"]
)
Expand Down
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 26fb7a7

Please sign in to comment.