MCPcopy Create free account
hub / github.com/EasyIME/PIME / get_query_arguments

Method get_query_arguments

python/python3/tornado/web.py:521–528  ·  view source on GitHub ↗

Returns a list of the query arguments with the given name. If the argument is not present, returns an empty list. .. versionadded:: 3.2

(self, name: str, strip: bool = True)

Source from the content-addressed store, hash-verified

519 return self._get_argument(name, default, self.request.query_arguments, strip)
520
521 def get_query_arguments(self, name: str, strip: bool = True) -> List[str]:
522 """Returns a list of the query arguments with the given name.
523
524 If the argument is not present, returns an empty list.
525
526 .. versionadded:: 3.2
527 """
528 return self._get_arguments(name, self.request.query_arguments, strip)
529
530 def _get_argument(
531 self,

Callers 1

prepareMethod · 0.80

Calls 1

_get_argumentsMethod · 0.95

Tested by 1

prepareMethod · 0.64