-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.py
More file actions
18 lines (16 loc) · 728 Bytes
/
help.py
File metadata and controls
18 lines (16 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""
Module is holding helping strings
"""
ARGUMENTS_PARSING = {
"address": "What do you want to fetch?",
"output": "Output path for the file, will be created if not existed, will use stdout if not specified",
"method": "Custom method for request, POST, GET are supported",
"timeout": "Timeout for request",
"body": "Custom body for request,"
" supports only JSON-like format, use like this: arg=value,arg2=value2",
"header": "Custom headers for request,"
" supports only JSON-like format, use like this: arg=value,arg2=value2",
"cookies": "Custom cookies for request,"
" supports only JSON-like format, use like this: arg=value,arg2=value2",
}
HELP_MISC = {"description": "Fetch them"}