summaryrefslogtreecommitdiffstats
path: root/pulseaudio/__init__.py
diff options
context:
space:
mode:
authorPaul W. Frields <stickster@gmail.com>2009-05-23 17:16:46 -0400
committerPaul W. Frields <stickster@gmail.com>2009-05-23 17:16:46 -0400
commit1846a632d0f450839af538c2105f1a30ec1c6398 (patch)
tree056d4f9610d4e2cb5973da009e77c607e774c7df /pulseaudio/__init__.py
parentccf4ecaaf1136cb01bc10bffb337acad88165d1d (diff)
downloadpulsecaster-1846a632d0f450839af538c2105f1a30ec1c6398.tar.gz
pulsecaster-1846a632d0f450839af538c2105f1a30ec1c6398.tar.xz
pulsecaster-1846a632d0f450839af538c2105f1a30ec1c6398.zip
Add simple PulseAudio bindings for Python
Thank you to Harry Karvonen <harry.karvonen@gmail.com> for providing this very helpful code!
Diffstat (limited to 'pulseaudio/__init__.py')
-rw-r--r--pulseaudio/__init__.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/pulseaudio/__init__.py b/pulseaudio/__init__.py
new file mode 100644
index 0000000..8fa7217
--- /dev/null
+++ b/pulseaudio/__init__.py
@@ -0,0 +1,29 @@
+#!/usr/bin/python
+# vi: et sw=2
+#
+# __init__.py
+# Copyright (C) 2009 Harry Karvonen
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+#
+# Author: Harry Karvonen <harry.karvonen@gmail.com>
+#
+
+
+
+from PulseObj import *
+from PulseVolume import *
+from PulseClient import *
+from PulseSink import *