Co-Authored-By: Aditya <me@xditya.me> Co-Authored-By: Amit Sharma <48654350+buddhhu@users.noreply.github.com> Co-Authored-By: hellboi_atul <68107352+hellboi-atul@users.noreply.github.com> Co-Authored-By: Sρι∂у <68327188+sppidy@users.noreply.github.com> Co-Authored-By: Anonymous <69723581+New-dev0@users.noreply.github.com> Co-Authored-By: Danish <72792730+1Danish-00@users.noreply.github.com> Co-Authored-By: Arnab Paryali <arnabxd@pm.me> Co-Authored-By: Programming Error <75001577+programmingerror@users.noreply.github.com>
71 lines
1.7 KiB
Python
71 lines
1.7 KiB
Python
# Ultroid - UserBot
|
|
# Copyright (C) 2020 TeamUltroid
|
|
#
|
|
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
|
|
# PLease read the GNU Affero General Public License in
|
|
# <https://www.github.com/TeamUltroid/Ultroid/blob/main/LICENSE/>.
|
|
|
|
"""
|
|
✘ Commands Available -
|
|
|
|
• `{i}github <username>`
|
|
Get full information of the users github profile.
|
|
"""
|
|
|
|
|
|
import requests
|
|
|
|
from . import *
|
|
|
|
|
|
@ultroid_cmd(
|
|
pattern="github (.*)",
|
|
)
|
|
async def gitsearch(event):
|
|
xx = await eor(event, "`Searching...`")
|
|
try:
|
|
usrname = event.pattern_match.group(1)
|
|
except BaseException:
|
|
return await xx.edit("`Search for whom? Give me a user name!!`")
|
|
url = f"https://api.github.com/users/{usrname}"
|
|
ult = requests.get(url).json()
|
|
try:
|
|
uname = ult["login"]
|
|
uid = ult["id"]
|
|
upic = ult["avatar_url"]
|
|
ulink = ult["html_url"]
|
|
uacc = ult["name"]
|
|
ucomp = ult["company"]
|
|
ublog = ult["blog"]
|
|
ulocation = ult["location"]
|
|
ubio = ult["bio"]
|
|
urepos = ult["public_repos"]
|
|
ufollowers = ult["followers"]
|
|
ufollowing = ult["following"]
|
|
except BaseException:
|
|
return await xx.edit("`No such user found...`")
|
|
fullusr = f"""
|
|
**[GITHUB]({ulink})**
|
|
|
|
**Name** - {uacc}
|
|
**UserName** - {uname}
|
|
**ID** - {uid}
|
|
**Company** - {ucomp}
|
|
**Blog** - {ublog}
|
|
**Location** - {ulocation}
|
|
**Bio** - {ubio}
|
|
**Repos** - {urepos}
|
|
**Followers** - {ufollowers}
|
|
**Following** - {ufollowing}
|
|
"""
|
|
await xx.delete()
|
|
await ultroid_bot.send_file(
|
|
event.chat_id,
|
|
upic,
|
|
caption=fullusr,
|
|
link_preview=False,
|
|
)
|
|
|
|
|
|
HELP.update({f"{__name__.split('.')[1]}": f"{__doc__.format(i=Var.HNDLR)}"})
|