Request description for the multi_requests function
Definition at line 127 of file __init__.py.
◆ delete()
searx.network.Request.delete |
( |
| url, |
|
|
** | kwargs ) |
|
static |
Definition at line 159 of file __init__.py.
159 def delete(url, **kwargs):
160 return Request('DELETE', url, kwargs)
161
162
◆ get()
searx.network.Request.get |
( |
| url, |
|
|
** | kwargs ) |
|
static |
◆ head()
searx.network.Request.head |
( |
| url, |
|
|
** | kwargs ) |
|
static |
Definition at line 143 of file __init__.py.
143 def head(url, **kwargs):
144 return Request('HEAD', url, kwargs)
145
◆ options()
searx.network.Request.options |
( |
| url, |
|
|
** | kwargs ) |
|
static |
Definition at line 139 of file __init__.py.
139 def options(url, **kwargs):
140 return Request('OPTIONS', url, kwargs)
141
◆ patch()
searx.network.Request.patch |
( |
| url, |
|
|
** | kwargs ) |
|
static |
Definition at line 155 of file __init__.py.
155 def patch(url, **kwargs):
156 return Request('PATCH', url, kwargs)
157
◆ post()
searx.network.Request.post |
( |
| url, |
|
|
** | kwargs ) |
|
static |
Definition at line 147 of file __init__.py.
147 def post(url, **kwargs):
148 return Request('POST', url, kwargs)
149
◆ put()
searx.network.Request.put |
( |
| url, |
|
|
** | kwargs ) |
|
static |
Definition at line 151 of file __init__.py.
151 def put(url, **kwargs):
152 return Request('PUT', url, kwargs)
153
◆ kwargs
dict searx.network.Request.kwargs = {} |
|
static |
The documentation for this class was generated from the following file:
- /home/andrew/Documents/code/public/searxng/searx/network/__init__.py