Update main.py
Browse files
main.py
CHANGED
@@ -55,7 +55,7 @@ def get_random_from_channel(link):
|
|
55 |
|
56 |
async def upload_to_catbox(dl_path: str) -> str:
|
57 |
base_url = "https://catbox.moe/user/api.php"
|
58 |
-
proxy_url = f"http://
|
59 |
async with aiohttp.ClientSession() as session:
|
60 |
form_data = aiohttp.FormData()
|
61 |
form_data.add_field("reqtype", "fileupload")
|
@@ -69,7 +69,7 @@ async def upload_to_catbox(dl_path: str) -> str:
|
|
69 |
content_type="application/octet-stream"
|
70 |
)
|
71 |
|
72 |
-
async with session.post(base_url, data=form_data) as response:
|
73 |
response.raise_for_status()
|
74 |
return (await response.text()).strip()
|
75 |
|
|
|
55 |
|
56 |
async def upload_to_catbox(dl_path: str) -> str:
|
57 |
base_url = "https://catbox.moe/user/api.php"
|
58 |
+
proxy_url = f"http://78.129.155.75:8080"
|
59 |
async with aiohttp.ClientSession() as session:
|
60 |
form_data = aiohttp.FormData()
|
61 |
form_data.add_field("reqtype", "fileupload")
|
|
|
69 |
content_type="application/octet-stream"
|
70 |
)
|
71 |
|
72 |
+
async with session.post(base_url, data=form_data, proxy=proxy_url) as response:
|
73 |
response.raise_for_status()
|
74 |
return (await response.text()).strip()
|
75 |
|