MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / query

Method query

thirdparty/bottle/bottle.py:1618–1627  ·  view source on GitHub ↗

The :attr:`query_string` parsed into a :class:`FormsDict`. These values are sometimes called "URL arguments" or "GET parameters", but not to be confused with "URL wildcards" as they are provided by the :class:`Router`.

(self)

Source from the content-addressed store, hash-verified

1616
1617 @DictProperty('environ', 'bottle.request.query', read_only=True)
1618 def query(self):
1619 """ The :attr:`query_string` parsed into a :class:`FormsDict`. These
1620 values are sometimes called "URL arguments" or "GET parameters", but
1621 not to be confused with "URL wildcards" as they are provided by the
1622 :class:`Router`. """
1623 get = self.environ['bottle.get'] = FormsDict()
1624 pairs = _parse_qsl(self.environ.get('QUERY_STRING', ''))
1625 for key, value in pairs:
1626 get[key] = value
1627 return get
1628
1629 @DictProperty('environ', 'bottle.request.forms', read_only=True)
1630 def forms(self):

Callers

nothing calls this directly

Calls 3

FormsDictClass · 0.85
_parse_qslFunction · 0.85
getMethod · 0.45

Tested by

no test coverage detected