aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/livestreamer/stream.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/livestreamer/stream.py')
-rw-r--r--src/livestreamer/stream.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/livestreamer/stream.py b/src/livestreamer/stream.py
index a6aac3b..7a7e5bf 100644
--- a/src/livestreamer/stream.py
+++ b/src/livestreamer/stream.py
@@ -1,6 +1,6 @@
-from livestreamer import options
-from livestreamer.utils import urlopen
-from livestreamer.compat import str, is_win32
+from . import options
+from .utils import urlopen
+from .compat import str, is_win32
import os
import pbs
@@ -81,3 +81,5 @@ class HTTPStream(Stream):
def open(self):
return urlopen(self.url)
+
+__all__ = ["StreamError", "Stream", "StreamProcess", "RTMPStream", "HTTPStream"]