search-api-webui 0.1.8__py3-none-any.whl → 0.1.10__py3-none-any.whl
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/app.py +49 -27
- search_api_webui/providers/__init__.py +4 -1
- search_api_webui/providers/base.py +33 -0
- search_api_webui/providers/generic.py +62 -9
- search_api_webui/providers/querit.py +6 -3
- search_api_webui/providers.yaml +4 -4
- search_api_webui/static/assets/index-B2AadzJS.css +1 -0
- search_api_webui/static/assets/index-DxStlxhi.js +14 -0
- search_api_webui/static/index.html +2 -2
- {search_api_webui-0.1.8.dist-info → search_api_webui-0.1.10.dist-info}/METADATA +48 -8
- search_api_webui-0.1.10.dist-info/RECORD +18 -0
- {search_api_webui-0.1.8.dist-info → search_api_webui-0.1.10.dist-info}/WHEEL +1 -1
- search_api_webui/static/assets/index-7iEn12Q9.js +0 -196
- search_api_webui/static/assets/index-DKxNoLrm.css +0 -1
- search_api_webui-0.1.8.dist-info/RECORD +0 -18
- {search_api_webui-0.1.8.dist-info → search_api_webui-0.1.10.dist-info}/entry_points.txt +0 -0
- {search_api_webui-0.1.8.dist-info → search_api_webui-0.1.10.dist-info}/licenses/LICENSE +0 -0
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
|
7
7
|
<title>Search API WebUI</title>
|
|
8
|
-
<script type="module" crossorigin src="/assets/index-
|
|
9
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-DxStlxhi.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="/assets/index-B2AadzJS.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="root"></div>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: search-api-webui
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.10
|
|
4
4
|
Summary: A Search API WebUI for testing and comparing 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
|
|
@@ -28,7 +28,7 @@ Description-Content-Type: text/markdown
|
|
|
28
28
|
|
|
29
29
|
# Search API WebUI
|
|
30
30
|
|
|
31
|
-
A lightweight,
|
|
31
|
+
A lightweight, cross-platform WebUI and native Mac App for testing, comparing, and visualizing Search APIs (Querit, You, etc.).
|
|
32
32
|
|
|
33
33
|

|
|
34
34
|
|
|
@@ -85,36 +85,76 @@ Use this method if you want to contribute to the code or build from source.
|
|
|
85
85
|
* Python 3.7+
|
|
86
86
|
* Node.js & npm (for building the frontend)
|
|
87
87
|
|
|
88
|
-
###
|
|
88
|
+
### Quick Start with Makefile
|
|
89
89
|
|
|
90
90
|
**Clone the repository**
|
|
91
91
|
|
|
92
|
-
```
|
|
92
|
+
```bash
|
|
93
93
|
git clone https://github.com/querit-ai/search-api-webui.git
|
|
94
94
|
cd search-api-webui
|
|
95
95
|
```
|
|
96
96
|
|
|
97
|
-
**
|
|
97
|
+
**Development Mode** (with hot reload)
|
|
98
|
+
|
|
99
|
+
```bash
|
|
100
|
+
make dev
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
This will:
|
|
104
|
+
- Start Flask backend on http://localhost:8889
|
|
105
|
+
- Start Vite frontend dev server on http://localhost:5173
|
|
106
|
+
- Automatically open your browser
|
|
107
|
+
- Enable hot module replacement for instant updates
|
|
98
108
|
|
|
109
|
+
**Build Python Wheel**
|
|
110
|
+
|
|
111
|
+
```bash
|
|
112
|
+
make # or 'make all'
|
|
99
113
|
```
|
|
114
|
+
|
|
115
|
+
**Build macOS DMG** (macOS only)
|
|
116
|
+
|
|
117
|
+
```bash
|
|
118
|
+
make dmg # Builds for your current architecture
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
### Manual Setup
|
|
122
|
+
|
|
123
|
+
If you prefer not to use Makefile:
|
|
124
|
+
|
|
125
|
+
**Build Frontend**
|
|
126
|
+
|
|
127
|
+
```bash
|
|
100
128
|
cd frontend
|
|
101
129
|
npm install
|
|
102
130
|
npm run build
|
|
103
|
-
cd
|
|
131
|
+
cd ..
|
|
104
132
|
```
|
|
105
133
|
|
|
106
134
|
**Install search-api-webui (Editable Mode)**
|
|
107
135
|
|
|
108
|
-
```
|
|
136
|
+
```bash
|
|
109
137
|
pip install -e .
|
|
110
138
|
```
|
|
111
139
|
|
|
112
140
|
**Run the Server**
|
|
113
141
|
|
|
114
|
-
```
|
|
142
|
+
```bash
|
|
115
143
|
python -m search_api_webui.app
|
|
116
144
|
```
|
|
117
145
|
|
|
146
|
+
### Available Make Commands
|
|
147
|
+
|
|
148
|
+
```bash
|
|
149
|
+
make # Build Python wheel package (default)
|
|
150
|
+
make dev # Start development servers with hot reload
|
|
151
|
+
make dmg # Build macOS DMG for current architecture
|
|
152
|
+
make backend # Start backend server only
|
|
153
|
+
make frontend # Start frontend dev server only
|
|
154
|
+
make clean # Clean build artifacts
|
|
155
|
+
make help # Show all available commands
|
|
156
|
+
```
|
|
157
|
+
|
|
118
158
|
## Configuration
|
|
119
159
|
|
|
120
160
|
### Add API Keys
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
search_api_webui/__init__.py,sha256=8lqDjWnBOwF_NhSK9_JZDg19zxwal21cOaN-hqBZNLE,1101
|
|
2
|
+
search_api_webui/app.py,sha256=AplD1WKeH4TD-3Dm2QLJAogNdq8p4OJKxhtwC2_185s,10359
|
|
3
|
+
search_api_webui/providers.yaml,sha256=YJBqITsS3UwaNOnhRrMUGP7ShDDbffzX-kYgPJb6L9M,1647
|
|
4
|
+
search_api_webui/ruff.toml,sha256=4XrS5KAylffZi6_DL8i0rvDVxZtfDgFLmltmTc8XXF8,608
|
|
5
|
+
search_api_webui/providers/__init__.py,sha256=bvCGjIyFzEFpj4gwMMhjcVz5FINkHg06HTfcI8Wt1BA,2185
|
|
6
|
+
search_api_webui/providers/base.py,sha256=1pOirPROqSpWrOJucQADv8xG65eVCplSs1OsDdVq1c0,5167
|
|
7
|
+
search_api_webui/providers/generic.py,sha256=xC3XkknXx0fGyuh40wK0hdGUrg-YXHDQeYIAAX2swTk,10836
|
|
8
|
+
search_api_webui/providers/querit.py,sha256=XC6CdRqxvsixqMmDh94CGD-982x_Tn5OIp-xp-F9fFY,4330
|
|
9
|
+
search_api_webui/static/AppIcon.icns,sha256=oQLr-jHi7RkzJoz0JIAQFyW9A4YMPsOdLh7sEtYbOT8,470797
|
|
10
|
+
search_api_webui/static/favicon.ico,sha256=U_7TbOXM0jf963y9j0jogM0rBpKNr72HVVOofnBNAVQ,15086
|
|
11
|
+
search_api_webui/static/index.html,sha256=R9ISMcC1T_mtFiym0S9_7MlFSBcJs_XmiqUThn-Csak,465
|
|
12
|
+
search_api_webui/static/assets/index-B2AadzJS.css,sha256=FyZcWIPem-s-UsOgbxE38RM_L0ErlaAHmMwQeUmwv7A,20345
|
|
13
|
+
search_api_webui/static/assets/index-DxStlxhi.js,sha256=KrwjmofdeZJX30F8JLwBmUiStm3LcN8BEmKOU5ISDzA,214271
|
|
14
|
+
search_api_webui-0.1.10.dist-info/METADATA,sha256=ZDbx-nzItvLx8_Uy4cq5_9X8uRLGcmNFGlZK66NHFGA,5049
|
|
15
|
+
search_api_webui-0.1.10.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
16
|
+
search_api_webui-0.1.10.dist-info/entry_points.txt,sha256=ogYy3eeonZ_oQlrEZC-4JBWfYdB7kkkdqXUUmX0xgMs,63
|
|
17
|
+
search_api_webui-0.1.10.dist-info/licenses/LICENSE,sha256=B7n2gauZcaVVVdE-zvx3mABAgGzgzVKu7x1a94ZeuPU,1074
|
|
18
|
+
search_api_webui-0.1.10.dist-info/RECORD,,
|