(
self,
params: Params,
*,
array_format: ArrayFormat | NotGiven = not_given,
nested_format: NestedFormat | NotGiven = not_given,
)
| 34 | return parse_qs(query) |
| 35 | |
| 36 | def stringify( |
| 37 | self, |
| 38 | params: Params, |
| 39 | *, |
| 40 | array_format: ArrayFormat | NotGiven = not_given, |
| 41 | nested_format: NestedFormat | NotGiven = not_given, |
| 42 | ) -> str: |
| 43 | return urlencode( |
| 44 | self.stringify_items( |
| 45 | params, |
| 46 | array_format=array_format, |
| 47 | nested_format=nested_format, |
| 48 | ) |
| 49 | ) |
| 50 | |
| 51 | def stringify_items( |
| 52 | self, |
no test coverage detected