1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
<!doctype html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Python: package xmms</title>
</head>
<body bgcolor="#f0f0f8">
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="heading">
<tr bgcolor="#7799ee">
<td valign=bottom> <br>
<font color="#ffffff" face="helvetica, arial"> <br>
<big><big><strong>Python: the xmms package</strong></big></big></font>
</td>
</tr>
</table>
<tt>
<p><b>Python interface to XMMS</b></p>
<p> PyXMMS is implemented as a Python package, named xmms. This package offers
three public modules:</p>
<ul>
<li> <a href="xmms.common.html">xmms.common</a> </li>
<li> <a href="xmms.control.html">xmms.control</a> </li>
<li> <a href="xmms.config.html">xmms.config</a> </li>
</ul>
<p> The <a href="xmms.common.html">xmms.common</a> module provides common
objects to share between the two other modules, such as <a
href="xmms.common.html#error">xmms.common.error</a>, the most generic PyXMMS
exception, also accessible as <code>xmms.error</code>. </p>
<p> The <a href="xmms.control.html">xmms.control</a> module provides functions
to control XMMS (play, pause, add files to the playlist...). </p>
<p> The <a href="xmms.config.html">xmms.config</a> module provides functions
and classes to manage the main configuration file for XMMS (parsing,
modification, writing...). </p>
<p> For backward compatibility, the public objects defined in <a
href="xmms.control.html">xmms.control</a> are accessible directly from the
xmms package, so code like <code>import xmms; xmms.play()</code> still works,
but you should not rely on this behaviour. </p>
</body>
</html>
|