.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
searx.network.Request Class Reference
+ Inheritance diagram for searx.network.Request:
+ Collaboration diagram for searx.network.Request:

Static Public Member Functions

 get (url, **kwargs)
 
 options (url, **kwargs)
 
 head (url, **kwargs)
 
 post (url, **kwargs)
 
 put (url, **kwargs)
 
 patch (url, **kwargs)
 
 delete (url, **kwargs)
 

Static Public Attributes

dict kwargs = {}
 

Detailed Description

Request description for the multi_requests function

Definition at line 127 of file __init__.py.

Member Function Documentation

◆ 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

Definition at line 135 of file __init__.py.

135 def get(url, **kwargs):
136 return Request('GET', url, kwargs)
137

Referenced by searx.answerers._core.AnswerStorage.register().

+ Here is the caller graph for this function:

◆ 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

Member Data Documentation

◆ kwargs

dict searx.network.Request.kwargs = {}
static

Definition at line 132 of file __init__.py.


The documentation for this class was generated from the following file: