a helper library to create twitter bots using quill
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!");You can find various examples of how to make and run bots in the bots folder
Quill is the library that handles the webscraping of twitter to send tweets. It can be found here.