Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 669 Bytes

File metadata and controls

19 lines (16 loc) · 669 Bytes

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.