SkillAgentSearch skills...

CrazyShit

CrazyShit is a Python library designed for automating tasks for a WhatsApp bot using Selenium. It enables handling of updates and sending messages efficiently.

Install / Use

/learn @muhmd101/CrazyShit
About this skill

Quality Score

0/100

Category

Design

Supported Platforms

Universal

README

CrazyShit

CrazyShit is a Python library for handling automation tasks for a WhatsApp bot using Selenium.

Example Usage

from crazyshit import Client, filters
import asyncio

client = Client(
    "test",
    number="+2011111",
)

@client.on_message(filters.regex(r"^/start$"))
async def start_(bot, msg):
    await bot.send_message(
        to=msg.chat.title,
        text="how are you?"
    )

async def run():
    await client.start()
    print("[!] Running")

loop = asyncio.get_event_loop()
loop.run_until_complete(run())
loop.run_forever()

Features

  • automation tasks for a WhatsApp bot using Selenium.
  • Get updates and send messages.

Requirements

  • Python 3.8 or higher.
  • Selenium

Installing

pip3 install crazyshit
View on GitHub
GitHub Stars15
CategoryDesign
Updated5mo ago
Forks0

Languages

Python

Security Score

87/100

Audited on Oct 14, 2025

No findings