The raw :attr:`query` part of the URL (everything in between ``?`` and ``#``) as a string.
(self)
| 1453 | |
| 1454 | @property |
| 1455 | def query_string(self): |
| 1456 | """ The raw :attr:`query` part of the URL (everything in between ``?`` |
| 1457 | and ``#``) as a string. """ |
| 1458 | return self.environ.get('QUERY_STRING', '') |
| 1459 | |
| 1460 | @property |
| 1461 | def script_name(self): |