Cyral / PyraChat

Modern IRC Client and Framework

Home Page:https://www.pyratron.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PyraChat

Modern IRC Client and Framework

PyraChat uses WPF to provide a smooth and modern look that many older IRC clients lack today.

Supports most of RFC 1459, RFC 2812, and a bit of IRCv3, with modifications to better support modern IRC servers.

Framework

PyraChat is built on our own IRC framework using .NET. It can be utilized in your own client or bot.

var irc = new Client("irc.example.com", 6667, new User("Nick", "Real Name", "Ident"));
irc.IRCMessage += message => Console.WriteLine(message.Text);
irc.Connect += () =>
{
    irc.Send(new JoinMessage("#pyrachat-example"));
    irc.Send(new PrivateMessage("#pyrachat-example", "Hello World!"));
};

About

Modern IRC Client and Framework

https://www.pyratron.com/

License:GNU General Public License v2.0


Languages

Language:C# 100.0%