Added more docstrings for libraries

This commit is contained in:
Antonio de la Rosa 2022-03-14 00:04:30 +01:00
parent 58ff6a1d74
commit 799cfe2125
4 changed files with 140 additions and 15 deletions

View file

@ -10,10 +10,27 @@ if wsgi_gateway=='flask':
from flask import request
def get_query_args(key, default_value=''):
"""Simple shortcuts for get query args from a http request
A function that is used for have a shortcut for get query string args from a tipycal http request
Args:
key (str): The arg name or query key for extract from args array
default_value (str): The default value if key is not set in args array
"""
return request.args.get(key, default_value)
def get_post_args(key, default_value=''):
"""Simple shortcuts for get POST values from a http request
A function that is used for have a shortcut for get POST values from a tipycal http POST request
Args:
key (str): The arg name or form key for extract from POST array
default_value (str): The default value if key is not set in args array
"""
return request.form.get(key, default_value)
@ -22,6 +39,15 @@ elif wsgi_gateway=='bottle':
from bottle import request
def get_query_args(key, default_value=''):
"""Simple shortcuts for get query args from a http request
A function that is used for have a shortcut for get query string args from a tipycal http request
Args:
key (str): The arg name or query key for extract from args array
default_value (str): The default value if key is not set in args array
"""
return request.query.get(key, default_value)