Spaces:
Paused
Paused
File size: 857 Bytes
2f67506 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | #
# Copyright (C) 2021-2022 by TeamYukki@Github, < https://github.com/TeamYukki >.
#
# This file is part of < https://github.com/TeamYukki/YukkiMusicBot > project,
# and is released under the "GNU v3.0 License Agreement".
# Please see < https://github.com/TeamYukki/YukkiMusicBot/blob/master/LICENSE >
#
# All rights reserved.
import aiohttp
BASE = "https://batbin.me/"
async def post(url: str, *args, **kwargs):
async with aiohttp.ClientSession() as session:
async with session.post(url, *args, **kwargs) as resp:
try:
data = await resp.json()
except Exception:
data = await resp.text()
return data
async def Yukkibin(text):
resp = await post(f"{BASE}api/v2/paste", data=text)
if not resp["success"]:
return
link = BASE + resp["message"]
return link
|