logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Purple - Perl extension to the libpurple instant messenger library.

Abstract

         This module provides the interface for using perl scripts as plugins
         in libpurple.

Author

       Christian Hammond, <chipx86@gnupdate.org>

Description

       This module provides the interface for using perl scripts as plugins in Purple. With this, developers can
       write perl scripts that can be loaded in Purple as plugins. The scripts can interact with IMs, chats,
       accounts, the buddy list, libpurple signals, and more.

       The API for the perl interface is very similar to that of the Purple C API, which can be viewed at
       http://developer.pidgin.im/doxygen/ or in the header files in the Purple source tree.

Functions

       @accounts = Purple::accounts
           Returns a list of all accounts, online or offline.

       @chats = Purple::chats
           Returns a list of all chats currently open.

       @connections = Purple::connections
           Returns a list of all active connections.

       @conversations = Purple::conversations
           Returns a list of all conversations, both IM and chat, currently open.

       @conv_windows = Purple::conv_windows
           Returns a list of all conversation windows currently open.

       @ims = Purple::ims
           Returns a list of all instant messages currently open.

Name

       Purple - Perl extension to the libpurple instant messenger library.

See Also

       Purple C API documentation - http://developer.pidgin.im/doxygen/

       Purple website - http://pidgin.im/

Synopsis

         use Purple;

See Also