View python.code-workspace.json
{ | |
"folders": [ | |
{ | |
"path": "." | |
} | |
], | |
"settings": { | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, |
View RequestParameterParser
def parse_params(http_parameters: dict, client_identicator): | |
error = {"status": 400} | |
actions = { | |
'current': Sale.current_abones(client_identicator), | |
'previous': Sale.previous_abones(client_identicator), | |
'all': Sale.all_abones(client_identicator) | |
} | |
try: | |
abones_info = http_parameters['abones_info'] |