From b335495aadc9f5116a88d0359087ae33c9524aed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Gl=C3=BCpker?= Date: Wed, 1 May 2024 10:20:30 +0200 Subject: Fix dataclass usage --- test.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 test.py (limited to 'test.py') 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) -- cgit v1.2.3