perplexity-webui-scraper 0.3.6__py3-none-any.whl → 0.4.0__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.
- perplexity_webui_scraper/__init__.py +24 -3
- perplexity_webui_scraper/cli/get_perplexity_session_token.py +21 -53
- perplexity_webui_scraper/config.py +12 -29
- perplexity_webui_scraper/constants.py +13 -51
- perplexity_webui_scraper/core.py +18 -154
- perplexity_webui_scraper/enums.py +26 -88
- perplexity_webui_scraper/exceptions.py +29 -50
- perplexity_webui_scraper/http.py +39 -332
- perplexity_webui_scraper/limits.py +6 -16
- perplexity_webui_scraper/logging.py +23 -180
- perplexity_webui_scraper/mcp/__init__.py +2 -8
- perplexity_webui_scraper/mcp/__main__.py +1 -3
- perplexity_webui_scraper/mcp/server.py +105 -82
- perplexity_webui_scraper/models.py +33 -77
- perplexity_webui_scraper/resilience.py +17 -100
- perplexity_webui_scraper/types.py +18 -25
- {perplexity_webui_scraper-0.3.6.dist-info → perplexity_webui_scraper-0.4.0.dist-info}/METADATA +125 -106
- perplexity_webui_scraper-0.4.0.dist-info/RECORD +21 -0
- {perplexity_webui_scraper-0.3.6.dist-info → perplexity_webui_scraper-0.4.0.dist-info}/WHEEL +2 -2
- perplexity_webui_scraper-0.3.6.dist-info/RECORD +0 -21
- {perplexity_webui_scraper-0.3.6.dist-info → perplexity_webui_scraper-0.4.0.dist-info}/entry_points.txt +0 -0
{perplexity_webui_scraper-0.3.6.dist-info → perplexity_webui_scraper-0.4.0.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: perplexity-webui-scraper
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Summary: Python scraper to extract AI responses from Perplexity's web interface.
|
|
5
5
|
Keywords: perplexity,ai,scraper,webui,api,client
|
|
6
6
|
Author: henrique-coder
|
|
@@ -21,16 +21,16 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
21
21
|
Classifier: Typing :: Typed
|
|
22
22
|
Requires-Dist: curl-cffi>=0.14.0
|
|
23
23
|
Requires-Dist: loguru>=0.7.3
|
|
24
|
-
Requires-Dist: orjson>=3.11.
|
|
24
|
+
Requires-Dist: orjson>=3.11.6
|
|
25
25
|
Requires-Dist: pydantic>=2.12.5
|
|
26
26
|
Requires-Dist: tenacity>=9.1.2
|
|
27
|
-
Requires-Dist: fastmcp>=2.14.
|
|
28
|
-
Requires-Python: >=3.10
|
|
29
|
-
Project-URL: Changelog, https://github.com/henrique-coder/perplexity-webui-scraper/releases
|
|
30
|
-
Project-URL: Documentation, https://github.com/henrique-coder/perplexity-webui-scraper#readme
|
|
27
|
+
Requires-Dist: fastmcp>=2.14.4 ; extra == 'mcp'
|
|
28
|
+
Requires-Python: >=3.10, <3.15
|
|
31
29
|
Project-URL: Homepage, https://github.com/henrique-coder/perplexity-webui-scraper
|
|
32
|
-
Project-URL:
|
|
30
|
+
Project-URL: Documentation, https://github.com/henrique-coder/perplexity-webui-scraper#readme
|
|
33
31
|
Project-URL: Repository, https://github.com/henrique-coder/perplexity-webui-scraper.git
|
|
32
|
+
Project-URL: Issues, https://github.com/henrique-coder/perplexity-webui-scraper/issues
|
|
33
|
+
Project-URL: Changelog, https://github.com/henrique-coder/perplexity-webui-scraper/releases
|
|
34
34
|
Provides-Extra: mcp
|
|
35
35
|
Description-Content-Type: text/markdown
|
|
36
36
|
|
|
@@ -50,26 +50,42 @@ Python scraper to extract AI responses from [Perplexity's](https://www.perplexit
|
|
|
50
50
|
|
|
51
51
|
## Installation
|
|
52
52
|
|
|
53
|
+
### As a Library
|
|
54
|
+
|
|
53
55
|
```bash
|
|
54
|
-
|
|
55
|
-
uv
|
|
56
|
+
# From PyPI (stable)
|
|
57
|
+
uv add perplexity-webui-scraper
|
|
58
|
+
|
|
59
|
+
# From GitHub dev branch (latest features)
|
|
60
|
+
uv add git+https://github.com/henrique-coder/perplexity-webui-scraper.git@dev
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
### As MCP Server
|
|
64
|
+
|
|
65
|
+
No installation required - `uvx` handles everything automatically:
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
# From PyPI (stable)
|
|
69
|
+
uvx --from perplexity-webui-scraper[mcp] perplexity-webui-scraper-mcp
|
|
70
|
+
|
|
71
|
+
# From GitHub dev branch (latest features)
|
|
72
|
+
uvx --from "perplexity-webui-scraper[mcp] @ git+https://github.com/henrique-coder/perplexity-webui-scraper.git@dev" perplexity-webui-scraper-mcp
|
|
73
|
+
|
|
74
|
+
# From local directory (for development)
|
|
75
|
+
uv --directory /path/to/perplexity-webui-scraper run perplexity-webui-scraper-mcp
|
|
56
76
|
```
|
|
57
77
|
|
|
58
78
|
## Requirements
|
|
59
79
|
|
|
60
80
|
- **Perplexity Pro/Max account**
|
|
61
|
-
- **Session token** (`__Secure-next-auth.session-token` cookie
|
|
81
|
+
- **Session token** (`__Secure-next-auth.session-token` cookie)
|
|
62
82
|
|
|
63
83
|
### Getting Your Session Token
|
|
64
84
|
|
|
65
|
-
You can obtain your session token in two ways:
|
|
66
|
-
|
|
67
85
|
#### Option 1: Automatic (CLI Tool)
|
|
68
86
|
|
|
69
|
-
The package includes a CLI tool to automatically generate and save your session token:
|
|
70
|
-
|
|
71
87
|
```bash
|
|
72
|
-
get-perplexity-session-token
|
|
88
|
+
uv run get-perplexity-session-token
|
|
73
89
|
```
|
|
74
90
|
|
|
75
91
|
This interactive tool will:
|
|
@@ -80,17 +96,8 @@ This interactive tool will:
|
|
|
80
96
|
4. Extract and display your session token
|
|
81
97
|
5. Optionally save it to your `.env` file
|
|
82
98
|
|
|
83
|
-
**Features:**
|
|
84
|
-
|
|
85
|
-
- Secure ephemeral session (cleared on exit)
|
|
86
|
-
- Automatic `.env` file management
|
|
87
|
-
- Support for both OTP codes and magic links
|
|
88
|
-
- Clean terminal interface with status updates
|
|
89
|
-
|
|
90
99
|
#### Option 2: Manual (Browser)
|
|
91
100
|
|
|
92
|
-
If you prefer to extract the token manually:
|
|
93
|
-
|
|
94
101
|
1. Log in at [perplexity.ai](https://www.perplexity.ai)
|
|
95
102
|
2. Open DevTools (`F12`) → Application/Storage → Cookies
|
|
96
103
|
3. Copy the value of `__Secure-next-auth.session-token`
|
|
@@ -107,7 +114,7 @@ conversation = client.create_conversation()
|
|
|
107
114
|
conversation.ask("What is quantum computing?")
|
|
108
115
|
print(conversation.answer)
|
|
109
116
|
|
|
110
|
-
# Follow-up
|
|
117
|
+
# Follow-up (context is preserved)
|
|
111
118
|
conversation.ask("Explain it simpler")
|
|
112
119
|
print(conversation.answer)
|
|
113
120
|
```
|
|
@@ -130,17 +137,17 @@ from perplexity_webui_scraper import (
|
|
|
130
137
|
)
|
|
131
138
|
|
|
132
139
|
config = ConversationConfig(
|
|
133
|
-
model=Models.
|
|
140
|
+
model=Models.DEEP_RESEARCH,
|
|
134
141
|
source_focus=[SourceFocus.WEB, SourceFocus.ACADEMIC],
|
|
135
142
|
language="en-US",
|
|
136
|
-
coordinates=Coordinates(latitude=
|
|
143
|
+
coordinates=Coordinates(latitude=12.3456, longitude=-98.7654),
|
|
137
144
|
)
|
|
138
145
|
|
|
139
146
|
conversation = client.create_conversation(config)
|
|
140
147
|
conversation.ask("Latest AI research", files=["paper.pdf"])
|
|
141
148
|
```
|
|
142
149
|
|
|
143
|
-
## API
|
|
150
|
+
## API Reference
|
|
144
151
|
|
|
145
152
|
### `Perplexity(session_token, config?)`
|
|
146
153
|
|
|
@@ -163,22 +170,22 @@ conversation.ask("Latest AI research", files=["paper.pdf"])
|
|
|
163
170
|
|
|
164
171
|
| Model | Description |
|
|
165
172
|
| ---------------------------------- | ------------------------------------------------------------------------- |
|
|
166
|
-
| `Models.
|
|
167
|
-
| `Models.
|
|
168
|
-
| `Models.
|
|
169
|
-
| `Models.SONAR` |
|
|
173
|
+
| `Models.BEST` | Automatically selects the best model based on the query |
|
|
174
|
+
| `Models.DEEP_RESEARCH` | Create in-depth reports with more sources, charts, and advanced reasoning |
|
|
175
|
+
| `Models.CREATE_FILES_AND_APPS` | Turn your ideas into docs, slides, dashboards, and more |
|
|
176
|
+
| `Models.SONAR` | Perplexity's latest model |
|
|
170
177
|
| `Models.GPT_52` | GPT-5.2 - OpenAI's latest model |
|
|
171
|
-
| `Models.GPT_52_THINKING` | GPT-5.2
|
|
178
|
+
| `Models.GPT_52_THINKING` | GPT-5.2 - OpenAI's latest model (thinking) |
|
|
179
|
+
| `Models.CLAUDE_45_SONNET` | Claude Sonnet 4.5 - Anthropic's fast model |
|
|
180
|
+
| `Models.CLAUDE_45_SONNET_THINKING` | Claude Sonnet 4.5 - Anthropic's fast model (thinking) |
|
|
172
181
|
| `Models.CLAUDE_45_OPUS` | Claude Opus 4.5 - Anthropic's Opus reasoning model |
|
|
173
|
-
| `Models.CLAUDE_45_OPUS_THINKING` | Claude Opus 4.5
|
|
174
|
-
| `Models.
|
|
175
|
-
| `Models.
|
|
176
|
-
| `Models.
|
|
177
|
-
| `Models.GROK_41` | Grok 4.1 - xAI's latest
|
|
178
|
-
| `Models.GROK_41_THINKING` | Grok 4.1
|
|
179
|
-
| `Models.
|
|
180
|
-
| `Models.CLAUDE_45_SONNET` | Claude Sonnet 4.5 - Anthropic's newest advanced model |
|
|
181
|
-
| `Models.CLAUDE_45_SONNET_THINKING` | Claude Sonnet 4.5 Thinking - Anthropic's newest reasoning model |
|
|
182
|
+
| `Models.CLAUDE_45_OPUS_THINKING` | Claude Opus 4.5 - Anthropic's Opus reasoning model (thinking) |
|
|
183
|
+
| `Models.GEMINI_3_FLASH` | Gemini 3 Flash - Google's fast model |
|
|
184
|
+
| `Models.GEMINI_3_FLASH_THINKING` | Gemini 3 Flash - Google's fast model (thinking) |
|
|
185
|
+
| `Models.GEMINI_3_PRO_THINKING` | Gemini 3 Pro - Google's most advanced model (thinking) |
|
|
186
|
+
| `Models.GROK_41` | Grok 4.1 - xAI's latest model |
|
|
187
|
+
| `Models.GROK_41_THINKING` | Grok 4.1 - xAI's latest model (thinking) |
|
|
188
|
+
| `Models.KIMI_K25_THINKING` | Kimi K2.5 - Moonshot AI's latest model |
|
|
182
189
|
|
|
183
190
|
### CitationMode
|
|
184
191
|
|
|
@@ -204,76 +211,80 @@ conversation.ask("Latest AI research", files=["paper.pdf"])
|
|
|
204
211
|
|
|
205
212
|
## Exceptions
|
|
206
213
|
|
|
207
|
-
|
|
214
|
+
| Exception | Description |
|
|
215
|
+
| ---------------------------------- | -------------------------------------------------- |
|
|
216
|
+
| `PerplexityError` | Base exception for all library errors |
|
|
217
|
+
| `HTTPError` | HTTP error with status code and response body |
|
|
218
|
+
| `AuthenticationError` | Session token is invalid or expired (HTTP 401/403) |
|
|
219
|
+
| `RateLimitError` | Rate limit exceeded (HTTP 429) |
|
|
220
|
+
| `FileUploadError` | File upload failed |
|
|
221
|
+
| `FileValidationError` | File validation failed (size, type, etc.) |
|
|
222
|
+
| `ResearchClarifyingQuestionsError` | Research mode asking clarifying questions |
|
|
223
|
+
| `ResponseParsingError` | API response could not be parsed |
|
|
224
|
+
| `StreamingError` | Error during streaming response |
|
|
208
225
|
|
|
209
|
-
|
|
210
|
-
| ---------------------------------- | ------------------------------------------------------------ |
|
|
211
|
-
| `PerplexityError` | Base exception for all library errors |
|
|
212
|
-
| `AuthenticationError` | Session token is invalid or expired (HTTP 403) |
|
|
213
|
-
| `RateLimitError` | Rate limit exceeded (HTTP 429) |
|
|
214
|
-
| `FileUploadError` | File upload failed |
|
|
215
|
-
| `FileValidationError` | File validation failed (size, type, etc.) |
|
|
216
|
-
| `ResearchClarifyingQuestionsError` | Research mode is asking clarifying questions (not supported) |
|
|
217
|
-
| `ResponseParsingError` | API response could not be parsed |
|
|
218
|
-
| `StreamingError` | Error during streaming response |
|
|
226
|
+
## MCP Server (Model Context Protocol)
|
|
219
227
|
|
|
220
|
-
|
|
228
|
+
The library includes an MCP server for AI assistants like Claude Desktop and Antigravity.
|
|
221
229
|
|
|
222
|
-
|
|
230
|
+
Each AI model is exposed as a separate tool - enable only the ones you need to reduce agent context size.
|
|
223
231
|
|
|
224
|
-
|
|
225
|
-
from perplexity_webui_scraper import (
|
|
226
|
-
Perplexity,
|
|
227
|
-
ResearchClarifyingQuestionsError,
|
|
228
|
-
)
|
|
229
|
-
|
|
230
|
-
try:
|
|
231
|
-
conversation.ask("Research this topic", model=Models.RESEARCH)
|
|
232
|
-
except ResearchClarifyingQuestionsError as error:
|
|
233
|
-
print("The AI needs clarification:")
|
|
234
|
-
for question in error.questions:
|
|
235
|
-
print(f" - {question}")
|
|
236
|
-
# Consider rephrasing your query to be more specific
|
|
237
|
-
```
|
|
232
|
+
### Configuration
|
|
238
233
|
|
|
239
|
-
|
|
234
|
+
Add to your MCP config file (no installation required):
|
|
240
235
|
|
|
241
|
-
|
|
236
|
+
**Claude Desktop** (`~/.config/claude/claude_desktop_config.json`):
|
|
242
237
|
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
238
|
+
```json
|
|
239
|
+
{
|
|
240
|
+
"mcpServers": {
|
|
241
|
+
"perplexity-webui-scraper": {
|
|
242
|
+
"command": "uvx",
|
|
243
|
+
"args": [
|
|
244
|
+
"--from",
|
|
245
|
+
"perplexity-webui-scraper[mcp]",
|
|
246
|
+
"perplexity-webui-scraper-mcp"
|
|
247
|
+
],
|
|
248
|
+
"env": {
|
|
249
|
+
"PERPLEXITY_SESSION_TOKEN": "your_token_here"
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
}
|
|
247
254
|
```
|
|
248
255
|
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
```bash
|
|
252
|
-
# Set your session token
|
|
253
|
-
export PERPLEXITY_SESSION_TOKEN="your_token_here" # For Linux/Mac
|
|
254
|
-
set PERPLEXITY_SESSION_TOKEN="your_token_here" # For Windows
|
|
256
|
+
**From GitHub dev branch:**
|
|
255
257
|
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
258
|
+
```json
|
|
259
|
+
{
|
|
260
|
+
"mcpServers": {
|
|
261
|
+
"perplexity-webui-scraper": {
|
|
262
|
+
"command": "uvx",
|
|
263
|
+
"args": [
|
|
264
|
+
"--from",
|
|
265
|
+
"perplexity-webui-scraper[mcp] @ git+https://github.com/henrique-coder/perplexity-webui-scraper.git@dev",
|
|
266
|
+
"perplexity-webui-scraper-mcp"
|
|
267
|
+
],
|
|
268
|
+
"env": {
|
|
269
|
+
"PERPLEXITY_SESSION_TOKEN": "your_token_here"
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
}
|
|
261
274
|
```
|
|
262
275
|
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
Add to `~/.config/claude/claude_desktop_config.json`:
|
|
276
|
+
**From local directory (for development):**
|
|
266
277
|
|
|
267
278
|
```json
|
|
268
279
|
{
|
|
269
280
|
"mcpServers": {
|
|
270
|
-
"perplexity": {
|
|
281
|
+
"perplexity-webui-scraper": {
|
|
271
282
|
"command": "uv",
|
|
272
283
|
"args": [
|
|
284
|
+
"--directory",
|
|
285
|
+
"/absolute/path/to/perplexity-webui-scraper",
|
|
273
286
|
"run",
|
|
274
|
-
"
|
|
275
|
-
"run",
|
|
276
|
-
"path/to/perplexity_webui_scraper/mcp/server.py"
|
|
287
|
+
"perplexity-webui-scraper-mcp"
|
|
277
288
|
],
|
|
278
289
|
"env": {
|
|
279
290
|
"PERPLEXITY_SESSION_TOKEN": "your_token_here"
|
|
@@ -283,19 +294,27 @@ Add to `~/.config/claude/claude_desktop_config.json`:
|
|
|
283
294
|
}
|
|
284
295
|
```
|
|
285
296
|
|
|
286
|
-
### Available
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
|
295
|
-
|
|
|
296
|
-
| `
|
|
297
|
-
| `
|
|
298
|
-
| `
|
|
297
|
+
### Available Tools
|
|
298
|
+
|
|
299
|
+
Each tool uses a specific AI model. Enable only the ones you need:
|
|
300
|
+
|
|
301
|
+
| Tool | Model | Description |
|
|
302
|
+
| ----------------------------------- | ---------------------- | --------------------------------------------- |
|
|
303
|
+
| `perplexity_ask` | Best | Auto-selects best model based on query |
|
|
304
|
+
| `perplexity_deep_research` | Deep Research | In-depth reports with more sources and charts |
|
|
305
|
+
| `perplexity_sonar` | Sonar | Perplexity's latest model |
|
|
306
|
+
| `perplexity_gpt52` | GPT-5.2 | OpenAI's latest model |
|
|
307
|
+
| `perplexity_gpt52_thinking` | GPT-5.2 Thinking | OpenAI's latest model (thinking) |
|
|
308
|
+
| `perplexity_claude_sonnet` | Claude Sonnet 4.5 | Anthropic's fast model |
|
|
309
|
+
| `perplexity_claude_sonnet_thinking` | Claude Sonnet Thinking | Anthropic's fast model (thinking) |
|
|
310
|
+
| `perplexity_gemini_flash` | Gemini 3 Flash | Google's fast model |
|
|
311
|
+
| `perplexity_gemini_flash_thinking` | Gemini Flash Thinking | Google's fast model (thinking) |
|
|
312
|
+
| `perplexity_gemini_pro_thinking` | Gemini 3 Pro | Google's most advanced model (thinking) |
|
|
313
|
+
| `perplexity_grok` | Grok 4.1 | xAI's latest model |
|
|
314
|
+
| `perplexity_grok_thinking` | Grok 4.1 Thinking | xAI's latest model (thinking) |
|
|
315
|
+
| `perplexity_kimi_thinking` | Kimi K2.5 | Moonshot AI's latest model |
|
|
316
|
+
|
|
317
|
+
**All tools support `source_focus`:** `web`, `academic`, `social`, `finance`, `all`
|
|
299
318
|
|
|
300
319
|
## Disclaimer
|
|
301
320
|
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
perplexity_webui_scraper/__init__.py,sha256=VBE2YEEaL0FB9IJvD15wjQmPXDOkiVxXb0aXIye6GtI,1218
|
|
2
|
+
perplexity_webui_scraper/cli/get_perplexity_session_token.py,sha256=Yg7KOP10GNlnCoOKtt_62Nb2v0aeoQj8vAvQ4RPqmMg,6479
|
|
3
|
+
perplexity_webui_scraper/config.py,sha256=eM0OvTmtBEXQmWv0G4coW9I5tXJxHZBD5PSGfeW0rO0,1332
|
|
4
|
+
perplexity_webui_scraper/constants.py,sha256=iSFQHDYmbJpxlh33y0_WdmMQMP4QZwbdgeqDEPjBGFk,1474
|
|
5
|
+
perplexity_webui_scraper/core.py,sha256=brJBoCAX85iiL27ui-s6oJhg3wNEuzFSOiz32FqpsyE,17846
|
|
6
|
+
perplexity_webui_scraper/enums.py,sha256=fbrlj595opNup_7mraV5AXXeVKz_h0oLOpyXje8CSRQ,1695
|
|
7
|
+
perplexity_webui_scraper/exceptions.py,sha256=3wtEs2eR5D1QbIrRmnvjyemoLjHkP_RW5WYT73zO6zU,3219
|
|
8
|
+
perplexity_webui_scraper/http.py,sha256=B25m8C2A0-7l1Uq3DXDf1jXpajVS1abY-udzPX4OF5s,8113
|
|
9
|
+
perplexity_webui_scraper/limits.py,sha256=XIqw3LZbW6tglu3ccvTrizbp5lQPB8BL2sLPEzIatm0,348
|
|
10
|
+
perplexity_webui_scraper/logging.py,sha256=1eD4eQFuLkatWgKq14-yxKilDOEy5UQF0WvE4D-5HMw,3045
|
|
11
|
+
perplexity_webui_scraper/mcp/__init__.py,sha256=e8KsJ3GHzRXbGWJ40k5ckW0-4CvpDWnAmQ6r8vauTqE,238
|
|
12
|
+
perplexity_webui_scraper/mcp/__main__.py,sha256=N_cSeNjAzSJ861jspq60W0ZVjxWNXhM5O-FQ0aD1oPs,146
|
|
13
|
+
perplexity_webui_scraper/mcp/server.py,sha256=6GWsU8KxomSHKiXWkzDzG_2w75SqTMW4s4ft-HZ-ZWY,5576
|
|
14
|
+
perplexity_webui_scraper/models.py,sha256=YuTRHXHe2vV0FBZPVkgV42nEuwq-2CvkESiwED9GKpA,2373
|
|
15
|
+
perplexity_webui_scraper/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
+
perplexity_webui_scraper/resilience.py,sha256=Kb7PYi8VuQTLyhmuWWD0SaJrl6d7OIcrmBtq7PJ15Fk,2456
|
|
17
|
+
perplexity_webui_scraper/types.py,sha256=z098e7narY2UuYLtZyDZ94iWyoP7KGgwuxxTzehVHUE,1016
|
|
18
|
+
perplexity_webui_scraper-0.4.0.dist-info/WHEEL,sha256=fAguSjoiATBe7TNBkJwOjyL1Tt4wwiaQGtNtjRPNMQA,80
|
|
19
|
+
perplexity_webui_scraper-0.4.0.dist-info/entry_points.txt,sha256=ODpXpDTkmoQ_o3Y3lsy22PLs-8ndapvMKYwxcz6A9gs,189
|
|
20
|
+
perplexity_webui_scraper-0.4.0.dist-info/METADATA,sha256=aEWddecAQ9LJ3Nhuj21g-KzAJoJydW92k1JXNdQa7Jc,13092
|
|
21
|
+
perplexity_webui_scraper-0.4.0.dist-info/RECORD,,
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
perplexity_webui_scraper/__init__.py,sha256=DQdyF667plbSLdULrEll1ovrOPB7HwVNrD7fttLNkuQ,715
|
|
2
|
-
perplexity_webui_scraper/cli/get_perplexity_session_token.py,sha256=PxHZbrTbekUQX2MIMDZC0iXBTmnTSBFZMb85mLgezR8,7009
|
|
3
|
-
perplexity_webui_scraper/config.py,sha256=nQYNsyCvMQW1V51R-6UV5hA0DI02qBLJ-ufX6r3NZyU,2067
|
|
4
|
-
perplexity_webui_scraper/constants.py,sha256=j32_i67mZGJ4B3KPV1ICE-6NR5g3KxDtDY5OxQXIthw,1887
|
|
5
|
-
perplexity_webui_scraper/core.py,sha256=X8aQgIBCFzz000Cy58ofWCByT94HYuqyuQQmlgEQBVk,22460
|
|
6
|
-
perplexity_webui_scraper/enums.py,sha256=QHrDfdawedGuuThcAR0XC0xPnc7VwSaK4BFQ9jqzQag,2953
|
|
7
|
-
perplexity_webui_scraper/exceptions.py,sha256=vdr5fm6OSgruII8zLwcYT3NsrU58GAXFX-WyS6nuW0M,3987
|
|
8
|
-
perplexity_webui_scraper/http.py,sha256=blRITnFrJsqcsZXUDub8_ZFjSNtLz7mK2ZBRV6tRc1I,19757
|
|
9
|
-
perplexity_webui_scraper/limits.py,sha256=4-eO9xbfKtObN4kMDIVglXmfC4dZvYtvjyUKUP_LKSU,474
|
|
10
|
-
perplexity_webui_scraper/logging.py,sha256=jxgho9jjrZvr3tZ5m0z3caQQsqdtFT9sM-HDVFWL67M,7300
|
|
11
|
-
perplexity_webui_scraper/mcp/__init__.py,sha256=Ur7fmsPDrxewBzq9UdvMoFHp85a8pGsW32WBHG5pfrc,376
|
|
12
|
-
perplexity_webui_scraper/mcp/__main__.py,sha256=cmGev_HXYQK2hoNSQAziEo7bVqHdc0lXaTquzMItSiU,148
|
|
13
|
-
perplexity_webui_scraper/mcp/server.py,sha256=3RJeOHOjv048ZleUURG3sFdMaDHsSPmdn7GY47yAm2s,4758
|
|
14
|
-
perplexity_webui_scraper/models.py,sha256=I5PhVD7B5XeeWfjWvXBtnl3CHMv4P59DO_hnYk9O0b0,2636
|
|
15
|
-
perplexity_webui_scraper/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
-
perplexity_webui_scraper/resilience.py,sha256=sVsLW1kU6dMit4L6-dyPhVoT00EXGfokbEUnzvBNb0k,4680
|
|
17
|
-
perplexity_webui_scraper/types.py,sha256=qWsIABBxn1vcQQ2KUbC_hyiQHeaLsVb63epmRcpcmLk,1070
|
|
18
|
-
perplexity_webui_scraper-0.3.6.dist-info/WHEEL,sha256=RRVLqVugUmFOqBedBFAmA4bsgFcROUBiSUKlERi0Hcg,79
|
|
19
|
-
perplexity_webui_scraper-0.3.6.dist-info/entry_points.txt,sha256=ODpXpDTkmoQ_o3Y3lsy22PLs-8ndapvMKYwxcz6A9gs,189
|
|
20
|
-
perplexity_webui_scraper-0.3.6.dist-info/METADATA,sha256=OkwWS6PQwj1-hTkMPXvqA8peuBL-ei5AUp_kgX9KpAo,12168
|
|
21
|
-
perplexity_webui_scraper-0.3.6.dist-info/RECORD,,
|
|
File without changes
|