(raw, key)
| 37 | |
| 38 | |
| 39 | def get_cookie(raw, key): |
| 40 | cookie = http.cookies.SimpleCookie(raw) |
| 41 | morsel = cookie.get(key) |
| 42 | if morsel is not None: |
| 43 | return morsel.value |
| 44 | |
| 45 | |
| 46 | def get_query_param(path, key): |
no test coverage detected
searching dependent graphs…