Added / updated several Python packages

This commit is contained in:
layman
2022-05-03 22:31:22 +02:00
parent 204b775ced
commit 48e60747d9
24 changed files with 376 additions and 17 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/python3.9
# -*- coding: utf-8 -*-
import re
import sys
from kikit.plugin import cli
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(cli())