summaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
authorAndré Glüpker <git@wgmd.de>2024-05-01 10:20:30 +0200
committerAndré Glüpker <git@wgmd.de>2024-05-01 10:20:30 +0200
commitb335495aadc9f5116a88d0359087ae33c9524aed (patch)
tree674f79b4dea91d17d56bf4a23ef91f5e689df347 /test.py
parent121f1890b1618c92d7a8fc6d174881e66ab6b7c1 (diff)
downloadrss-feeds-b335495aadc9f5116a88d0359087ae33c9524aed.tar.gz
rss-feeds-b335495aadc9f5116a88d0359087ae33c9524aed.tar.bz2
rss-feeds-b335495aadc9f5116a88d0359087ae33c9524aed.zip
Fix dataclass usage
Diffstat (limited to 'test.py')
-rwxr-xr-xtest.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/test.py b/test.py
new file mode 100755
index 0000000..ed1e198
--- /dev/null
+++ b/test.py
@@ -0,0 +1,12 @@
+#!/usr/bin/env python3
+
+import logging
+
+from rss import buildRSS
+from zdf import zdf
+
+logging.basicConfig(level=logging.INFO)
+
+zdf_data = zdf("comedy/heute-show")
+rss = buildRSS(zdf_data)
+print(rss)