NEP DEVS
Open in Telegram
NEPS DEV WHO WANT TO HELP YOU WITH FOSS PROJECT. WE COLLECT SCRIPTS THIS GROUP IS ONLY FOR EDUCATIONAL PURPOSE
Show moreNo data
Subscribers
-3724 hours
-1357 days
-23530 days
Posts Archive
ā¤ļøAPK DOWNLOADER [TBC]ā
š Command:
*
š¤ Code:
bot.sendChatAction(chat_id=message.chat.id, action="typing")
query = message.text
api_url = f"https://apkdownloader.hellonepdevs.workers.dev/?query={query}"
try:
response = HTTP.get(api_url)
response.raise_for_status()
data = response.json()
for app in data:
filesize_mb = round(app['filesize'] / (1024 * 1024), 2)
caption = (
f"š± <b>{app['name']}</b>\n"
f"šØāš¼ <i>Developer:</i> {app['developer']}\n"
f"š¦ <i>Package:</i> {app['package']}\n"
f"š <i>Filesize:</i> {filesize_mb} MB\n"
f"š <i>Rank:</i> {app['rank']}"
)
inline_keyboard = InlineKeyboardMarkup([
[InlineKeyboardButton("š½ Download APK", url=app["path"])],
[InlineKeyboardButton("š¦ Download OBB", url=app["obbPath"]) if app["obbPath"] else InlineKeyboardButton("Join DevsNP", url="https://t.me/devsnp")]
])
bot.sendPhoto(
chat_id=message.chat.id,
photo=app["image"],
caption=caption,
parse_mode="HTML",
reply_markup=inline_keyboard
)
except Exception as e:
bot.sendMessage(
chat_id=message.chat.id,
text=f"ā <b>Error:</b> <i>{str(e)}</i>",
parse_mode="HTML"
)
)
ā¤ļøAPI :- @NEPDEVSAPIāļø
āļøCREDIT :- @NEPCODERš
ā¤ļøCHANNEL :- @DEVSNPā¤ļø
ā¤ļøSHARE WITH CREDIT :- @NEPCODER && @NEPDEVSAPIāļøā¤ļøSPOTIFY LINK TO MP3 [TBC]ā
š Command:
*
š¤ Code:
bot.sendChatAction(chat_id=message.chat.id, action="typing")
spotify_url = message.text
api_url = f"https://spotifydownloader.hellonepdevs.workers.dev/?url={spotify_url}"
try:
response = HTTP.get(api_url)
response.raise_for_status()
data = response.json()
caption = (
f"šµ <b>{data['title']}</b> by <i>{data['artist']}</i>\n\n"
f"š§ <b>Track:</b> {data['track']}\n"
f"ā±ļø <b>Duration:</b> {data['time']}\n\n"
f"š„ <b><a href='{data['download_url']}'>Download the track here</a></b> š¶"
)
inline_keyboard = InlineKeyboardMarkup([
[InlineKeyboardButton("Join DevsNP", url="https://t.me/")]
])
bot.sendPhoto(
chat_id=message.chat.id,
photo=data["image"],
caption=caption,
parse_mode="HTML",
reply_markup=inline_keyboard
)
bot.sendDocument(
chat_id=message.chat.id,
document=data["download_url"],
caption="š„ <b>Download the track here</b> š¶\n\n" + caption,
parse_mode="HTML",
reply_markup=inline_keyboard
)
except Exception as e:
bot.sendMessage(
chat_id=message.chat.id,
text=f"ā <b>Error:</b> <i>{str(e)}</i>",
parse_mode="HTML"
)
ā¤ļøAPI :- @NEPDEVSAPIāļø
āļøCREDIT :- @NEPCODERš
ā¤ļøCHANNEL :- @DEVSNPā¤ļø
ā¤ļøSHARE WITH CREDIT :- @NEPCODER && @NEPDEVSAPIāļøā¤ļøAi Image Generator TBC Codeā
š Command:
*
ā¤ļø Code:
bot.sendChatAction(chat_id=message.chat.id, action="upload_photo")
bot.sendChatAction(chat_id=message.chat.id, action="upload_photo")
chat_id = u
ms = message.text
url = f"https://aiimage.hellonepdevs.workers.dev/?prompt={ms}"
try:
response = HTTP.get(url)
response.raise_for_status()
get = bunchify(response.json())
bot.sendPhoto(chat_id=chat_id, photo=get["image_url"], caption="š¤ Created By @username")
except:
pass
ā
Must Give Credit If You Are Posting On Your Channel
āĀ©ļø Developer: @MrRoleXG
āš API By: @NepCoder
āšØš»āš» Posted on: @DEVSNP