1Purple(3) User Contributed Perl Documentation Purple(3)
2
3
4
6 Purple - Perl extension to the libpurple instant messenger library.
7
9 use Purple;
10
12 This module provides the interface for using perl scripts as plugins
13 in libpurple.
14
16 This module provides the interface for using perl scripts as plugins in
17 Purple. With this, developers can write perl scripts that can be loaded
18 in Purple as plugins. The scripts can interact with IMs, chats,
19 accounts, the buddy list, libpurple signals, and more.
20
21 The API for the perl interface is very similar to that of the Purple C
22 API, which can be viewed at http://developer.pidgin.im/doxygen/ or in
23 the header files in the Purple source tree.
24
26 @accounts = Purple::accounts
27 Returns a list of all accounts, online or offline.
28
29 @chats = Purple::chats
30 Returns a list of all chats currently open.
31
32 @connections = Purple::connections
33 Returns a list of all active connections.
34
35 @conversations = Purple::conversations
36 Returns a list of all conversations, both IM and chat, currently
37 open.
38
39 @conv_windows = Purple::conv_windows
40 Returns a list of all conversation windows currently open.
41
42 @ims = Purple::ims
43 Returns a list of all instant messages currently open.
44
46 Purple C API documentation - http://developer.pidgin.im/doxygen/
47
48 Purple website - http://pidgin.im/
49
51 Christian Hammond, <chipx86@gnupdate.org>
52
54 Copyright 2003 by Christian Hammond
55
56 This library is free software; you can redistribute it and/or modify it
57 under the terms of the General Public License (GPL). For more
58 information, see http://www.fsf.org/licenses/gpl.txt
59
60
61
62perl v5.34.1 2022-05-10 Purple(3)