Skip to content

a helper library to create twitter bots using quill

Notifications You must be signed in to change notification settings

DogeDoge17/cli-bot-lib

Repository files navigation

cli-bot-lib

a helper library to create twitter bots using quill

Usage

using cli_bot;
using Quill;
using Quill.Pages;

TwitterBot myBot = new(TimeSpan.FromMinutes(60)) { DisplayName = "My Bot" };

myBot.RunAction += Run;
myBot.Start();

void Run(ComposePage composer, string[] args) => composer.Tweet("Hello Twitter!");

Examples

You can find various examples of how to make and run bots in the bots folder

Quill

Quill is the library that handles the webscraping of twitter to send tweets. It can be found here.

About

a helper library to create twitter bots using quill

Resources

Stars

Watchers

Forks

Releases

No releases published

Languages