Spaces:
Sleeping
Sleeping
seawolf2357
commited on
Commit
โข
9da241a
1
Parent(s):
9e25e78
Update app.py
Browse files
app.py
CHANGED
@@ -3,15 +3,15 @@ import os
|
|
3 |
|
4 |
# Hugging Face ๊ณ์ ์ผ๋ก ๋ก๊ทธ์ธ (์ฒ์ ์คํ ์ ๋ก๊ทธ์ธ ์ ๋ณด ์
๋ ฅ)
|
5 |
hf_username = "seawolf2357" # ์ฌ๊ธฐ์ Hugging Face ์ฌ์ฉ์ ์ด๋ฆ ์
๋ ฅ
|
6 |
-
repo_name = "
|
7 |
file_path = "your_file_path.mp4" # ์
๋ก๋ํ ํ์ผ์ ๊ฒฝ๋ก
|
8 |
|
9 |
# API ์ด๊ธฐํ
|
10 |
api = HfApi()
|
11 |
|
12 |
-
# ๋ฆฌํฌ์งํ ๋ฆฌ
|
13 |
repo_url = api.create_repo(
|
14 |
-
|
15 |
token=HfFolder.get_token(),
|
16 |
private=False, # True๋ก ์ค์ ํ๋ฉด ๋น๊ณต๊ฐ ๋ฆฌํฌ์งํ ๋ฆฌ ์์ฑ
|
17 |
exist_ok=True # ์ด๋ฏธ ์กด์ฌํ๋ ๊ฒฝ์ฐ ์ค๋ฅ ๋ฐฉ์ง
|
|
|
3 |
|
4 |
# Hugging Face ๊ณ์ ์ผ๋ก ๋ก๊ทธ์ธ (์ฒ์ ์คํ ์ ๋ก๊ทธ์ธ ์ ๋ณด ์
๋ ฅ)
|
5 |
hf_username = "seawolf2357" # ์ฌ๊ธฐ์ Hugging Face ์ฌ์ฉ์ ์ด๋ฆ ์
๋ ฅ
|
6 |
+
repo_name = "your_repo_name" # ์ฌ๊ธฐ์ ๋ฆฌํฌ์งํ ๋ฆฌ ์ด๋ฆ ์
๋ ฅ (์์ผ๋ฉด ์์ฑ๋จ)
|
7 |
file_path = "your_file_path.mp4" # ์
๋ก๋ํ ํ์ผ์ ๊ฒฝ๋ก
|
8 |
|
9 |
# API ์ด๊ธฐํ
|
10 |
api = HfApi()
|
11 |
|
12 |
+
# ๋ฆฌํฌ์งํ ๋ฆฌ ์์ฑ ๋๋ ์ ํ
|
13 |
repo_url = api.create_repo(
|
14 |
+
repo_id=f"{hf_username}/{repo_name}",
|
15 |
token=HfFolder.get_token(),
|
16 |
private=False, # True๋ก ์ค์ ํ๋ฉด ๋น๊ณต๊ฐ ๋ฆฌํฌ์งํ ๋ฆฌ ์์ฑ
|
17 |
exist_ok=True # ์ด๋ฏธ ์กด์ฌํ๋ ๊ฒฝ์ฐ ์ค๋ฅ ๋ฐฉ์ง
|