search-api-webui 0.1.5__tar.gz → 0.1.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {search_api_webui-0.1.5 → search_api_webui-0.1.6}/PKG-INFO +1 -1
- {search_api_webui-0.1.5 → search_api_webui-0.1.6}/pyproject.toml +1 -1
- search_api_webui-0.1.6/search_api_webui/providers.yaml +19 -0
- search_api_webui-0.1.5/search_api_webui/providers.yaml +0 -35
- {search_api_webui-0.1.5 → search_api_webui-0.1.6}/.gitignore +0 -0
- {search_api_webui-0.1.5 → search_api_webui-0.1.6}/LICENSE +0 -0
- {search_api_webui-0.1.5 → search_api_webui-0.1.6}/README.md +0 -0
- {search_api_webui-0.1.5 → search_api_webui-0.1.6}/search_api_webui/__init__.py +0 -0
- {search_api_webui-0.1.5 → search_api_webui-0.1.6}/search_api_webui/app.py +0 -0
- {search_api_webui-0.1.5 → search_api_webui-0.1.6}/search_api_webui/providers/__init__.py +0 -0
- {search_api_webui-0.1.5 → search_api_webui-0.1.6}/search_api_webui/providers/base.py +0 -0
- {search_api_webui-0.1.5 → search_api_webui-0.1.6}/search_api_webui/providers/generic.py +0 -0
- {search_api_webui-0.1.5 → search_api_webui-0.1.6}/search_api_webui/providers/querit.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: search-api-webui
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.6
|
|
4
4
|
Summary: A Search API WebUI for Querit, You, and other search providers.
|
|
5
5
|
Project-URL: Homepage, https://github.com/querit-ai/search-api-webui
|
|
6
6
|
Project-URL: Repository, https://github.com/querit-ai/search-api-webui.git
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
querit:
|
|
2
|
+
type: "querit_sdk"
|
|
3
|
+
description: "Official Querit Search via Python SDK"
|
|
4
|
+
default_limit: 10
|
|
5
|
+
|
|
6
|
+
you:
|
|
7
|
+
url: "https://ydc-index.io/v1/search"
|
|
8
|
+
method: "GET"
|
|
9
|
+
headers:
|
|
10
|
+
X-API-Key: "{api_key}"
|
|
11
|
+
params:
|
|
12
|
+
query: "{query}"
|
|
13
|
+
payload: {}
|
|
14
|
+
response_mapping:
|
|
15
|
+
root_path: "results.web"
|
|
16
|
+
fields:
|
|
17
|
+
title: "title"
|
|
18
|
+
url: "url"
|
|
19
|
+
snippet: "snippets[0] || description"
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
querit:
|
|
2
|
-
url: "https://api.querit.ai/v1/search"
|
|
3
|
-
method: "POST"
|
|
4
|
-
headers:
|
|
5
|
-
"Accept": "application/json"
|
|
6
|
-
"Authorization": "Bearer {api_key}"
|
|
7
|
-
"Content-Type": "application/json"
|
|
8
|
-
payload:
|
|
9
|
-
query: "{query}"
|
|
10
|
-
response_mapping:
|
|
11
|
-
root_path: "results.result"
|
|
12
|
-
fields:
|
|
13
|
-
title: "title"
|
|
14
|
-
url: "url"
|
|
15
|
-
snippet: "snippet"
|
|
16
|
-
|
|
17
|
-
ydc_search:
|
|
18
|
-
url: "https://ydc-index.io/v1/search"
|
|
19
|
-
method: "GET"
|
|
20
|
-
headers:
|
|
21
|
-
X-API-Key: "{api_key}"
|
|
22
|
-
params:
|
|
23
|
-
query: "{query}"
|
|
24
|
-
payload: {}
|
|
25
|
-
response_mapping:
|
|
26
|
-
root_path: "results.web"
|
|
27
|
-
fields:
|
|
28
|
-
title: "title"
|
|
29
|
-
url: "url"
|
|
30
|
-
snippet: "snippets[0] || description"
|
|
31
|
-
|
|
32
|
-
querit_sdk:
|
|
33
|
-
type: "querit_sdk"
|
|
34
|
-
description: "Official Querit Search via Python SDK"
|
|
35
|
-
default_limit: 10
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|