added rss generator

This commit is contained in:
2025-04-07 01:56:36 +10:00
parent 937a39f76d
commit 55f97ae7fc
5 changed files with 79 additions and 3 deletions

2
urlencode.py Normal file
View File

@@ -0,0 +1,2 @@
def urlencode(inp: str):
return "".join([i if i in ["~", "-", "_", "."] or i.isalnum() else "%"+str(hex(ord(i))[2:].upper()) for i in inp])