Spaces:
Running
Running
hy
commited on
Commit
ยท
7f4feea
1
Parent(s):
9efeb4b
secret
Browse files- crossref_model.py +2 -2
crossref_model.py
CHANGED
|
@@ -29,8 +29,8 @@ import ssl
|
|
| 29 |
def search_naver_api(keywords: list) -> list:
|
| 30 |
"""(API) Naver ๊ฒ์ API๋ก Snippet,Link ์์ง (urllib.request + SSL ์ฐํ)"""
|
| 31 |
|
| 32 |
-
NAVER_ID = "
|
| 33 |
-
NAVER_SECRET = "
|
| 34 |
|
| 35 |
# --- Check : ํค์๋ ํ์ธ ---
|
| 36 |
if not keywords:
|
|
|
|
| 29 |
def search_naver_api(keywords: list) -> list:
|
| 30 |
"""(API) Naver ๊ฒ์ API๋ก Snippet,Link ์์ง (urllib.request + SSL ์ฐํ)"""
|
| 31 |
|
| 32 |
+
NAVER_ID = os.environ.get("NAVER_ID")
|
| 33 |
+
NAVER_SECRET = os.environ.get("NAVER_SECRET")
|
| 34 |
|
| 35 |
# --- Check : ํค์๋ ํ์ธ ---
|
| 36 |
if not keywords:
|