Set a raw option in the query. This option is encoded as part of the query parameters without any client-side verification. Use this for settings not directly exposed by the Python client. :param name: The name of the option :param value: The value o
(self, name, value)
| 177 | } |
| 178 | |
| 179 | def set_option(self, name, value): |
| 180 | """ |
| 181 | Set a raw option in the query. This option is encoded |
| 182 | as part of the query parameters without any client-side |
| 183 | verification. Use this for settings not directly exposed |
| 184 | by the Python client. |
| 185 | |
| 186 | :param name: The name of the option |
| 187 | :param value: The value of the option |
| 188 | """ |
| 189 | self._params[name] = value |
| 190 | |
| 191 | # @TODO: I imagine some things might need to be jsonified... |
| 192 |
no outgoing calls
no test coverage detected