Start adding feed support

This commit is contained in:
2022-06-24 17:19:22 +02:00
parent cd5b7d6100
commit aaa937f1c9
21 changed files with 4343 additions and 4 deletions

View File

@ -0,0 +1,8 @@
# -*- coding: utf-8 -*-
import sys
if sys.version_info[0] >= 3:
string_types = str
else:
string_types = basestring # noqa: F821