hackertools
Import All
from RyuzakiLib.hackertools.chatgpt import RendyDevChat
from RyuzakiLib.hackertools.github import GithubUsername
from RyuzakiLib.hackertools.rmbg import RemoveBg
from RyuzakiLib.hackertools.reverse import GoogleReverseImage
from RyuzakiLib.hackertools.ipinfo import WhoisIpHacker
from RyuzakiLib.hackertools.ocrapi import OcrApiUrl
from RyuzakiLib.hackertools.prefixes import CustomPrefixes
Example Chatgpt
from pyrogram import Client, filters
from pyrogram.types import Message
from RyuzakiLib.hackertools.chatgpt import RendyDevChat
query = "Hello World"
response = await RendyDevChat.chat_hacked(query, latest_model="openai-v2")
await message.reply(response)
Example Reverse
from pyrogram import Client, filters
from pyrogram.types import Message
from RyuzakiLib.hackertools.reverse import GoogleReverseImage
url = "https://example/jpg"
apikey = "api key token"
response = GoogleReverseImage(url, apikey)
results = response.get_reverse()
print(results)
Github Info Data
# < class RyuzakiLib.hackertools.github.Github >
hacking = await Github.username(username)
# code here
Ocr image to text
# < class RyuzakiLib.hackertools.ocrapi.OcrApiUrl >
code = await OcrApiUrl(api_key, url, language)
send = code.now_send_text()
# code here
Whois Ip Address
# < class RyuzakiLib.hackertools.ipinfo.MyIP >
response = await MyIP.hack(1243003)
# code here
Openai Ai Token
# < class RyuzakiLib.hackertools.openai.OpenAiToken >
code = await OpenAiToken("apikey token")
text = code.message_output()
img = code.photo_output()
# code here
Last updated