/
githubmirror
/
rsyslog
Обзор
Документация
Войти
/
githubmirror
/
rsyslog
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/urlencode.py
14 строк
429 B
Rainer Gerhards
helper utils: clean up python indentation
05 июл 2025, 15:34
Не верифицирован
05 июл 2025, 15:34
50e4a06
Код
Авторство
О чём код?
# call this via "python[3] script name" # a small url encoder for testbench purposes # written 2018-11-05 by Rainer Gerhards # part of the rsyslog testbench, released under ASL 2.0 import sys try: from urllib.parse import quote_plus except ImportError: from urllib import quote_plus if len(sys.argv) != 2: print("ERROR: urlencode needs exactly one string as argument") sys.exit(1) print(quote_plus(sys.argv[1]))