You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
464 B
11 lines
464 B
import json
|
|
def SettingsGet():
|
|
#Init config
|
|
lResult = {
|
|
"URL":"http://localhost:8081/SQLInsert", #Server host, example "http://localhost" Without / in the end
|
|
"Method":"POST", #Method to send HTTP (GET, POST...)
|
|
"Headers":{}, #Dictionary
|
|
"Cookies":{}, #Dictionary
|
|
"JSON":[{"TableName":"Test", "RowDict":{"Name":"Name1","Description":"DescTest", "Money":100, "Date":"01.01.2020"}}] #JSON data
|
|
}
|
|
return lResult |