rickroll-detector icon indicating copy to clipboard operation
rickroll-detector copied to clipboard

A simple rickroll detector

rickroll

A simple rickroll detector

Installation

This isn't a python module on pypi as of now so you'll need to download the rickroll_detector.py file and keep it in the same directory as your main file.

You can also git clone https://github.com/CodeWithSwastik/rickroll-detector

Usage

from rickroll_detector import find_rickroll

result = find_rickroll("https://youtu.be/oHg5SJYRHA0")
print(result) #returns True

Async Usage

from async_rickroll_detector import RickRollDetector

detector = RickRollDetector()
await detector.find('https://youtu.be/oHg5SJYRHA0')

Example bot

I also have a bot.py file here which is an example discord bot that will detect rickrolls