perplexity-webui-scraper 0.3.6__tar.gz → 0.3.7__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.
- {perplexity_webui_scraper-0.3.6 → perplexity_webui_scraper-0.3.7}/PKG-INFO +6 -6
- {perplexity_webui_scraper-0.3.6 → perplexity_webui_scraper-0.3.7}/pyproject.toml +7 -8
- {perplexity_webui_scraper-0.3.6 → perplexity_webui_scraper-0.3.7}/README.md +0 -0
- {perplexity_webui_scraper-0.3.6 → perplexity_webui_scraper-0.3.7}/src/perplexity_webui_scraper/__init__.py +0 -0
- {perplexity_webui_scraper-0.3.6 → perplexity_webui_scraper-0.3.7}/src/perplexity_webui_scraper/cli/get_perplexity_session_token.py +0 -0
- {perplexity_webui_scraper-0.3.6 → perplexity_webui_scraper-0.3.7}/src/perplexity_webui_scraper/config.py +0 -0
- {perplexity_webui_scraper-0.3.6 → perplexity_webui_scraper-0.3.7}/src/perplexity_webui_scraper/constants.py +0 -0
- {perplexity_webui_scraper-0.3.6 → perplexity_webui_scraper-0.3.7}/src/perplexity_webui_scraper/core.py +0 -0
- {perplexity_webui_scraper-0.3.6 → perplexity_webui_scraper-0.3.7}/src/perplexity_webui_scraper/enums.py +0 -0
- {perplexity_webui_scraper-0.3.6 → perplexity_webui_scraper-0.3.7}/src/perplexity_webui_scraper/exceptions.py +0 -0
- {perplexity_webui_scraper-0.3.6 → perplexity_webui_scraper-0.3.7}/src/perplexity_webui_scraper/http.py +0 -0
- {perplexity_webui_scraper-0.3.6 → perplexity_webui_scraper-0.3.7}/src/perplexity_webui_scraper/limits.py +0 -0
- {perplexity_webui_scraper-0.3.6 → perplexity_webui_scraper-0.3.7}/src/perplexity_webui_scraper/logging.py +0 -0
- {perplexity_webui_scraper-0.3.6 → perplexity_webui_scraper-0.3.7}/src/perplexity_webui_scraper/mcp/__init__.py +0 -0
- {perplexity_webui_scraper-0.3.6 → perplexity_webui_scraper-0.3.7}/src/perplexity_webui_scraper/mcp/__main__.py +0 -0
- {perplexity_webui_scraper-0.3.6 → perplexity_webui_scraper-0.3.7}/src/perplexity_webui_scraper/mcp/server.py +0 -0
- {perplexity_webui_scraper-0.3.6 → perplexity_webui_scraper-0.3.7}/src/perplexity_webui_scraper/models.py +23 -23
- {perplexity_webui_scraper-0.3.6 → perplexity_webui_scraper-0.3.7}/src/perplexity_webui_scraper/py.typed +0 -0
- {perplexity_webui_scraper-0.3.6 → perplexity_webui_scraper-0.3.7}/src/perplexity_webui_scraper/resilience.py +0 -0
- {perplexity_webui_scraper-0.3.6 → perplexity_webui_scraper-0.3.7}/src/perplexity_webui_scraper/types.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: perplexity-webui-scraper
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.7
|
|
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
|
|
@@ -24,13 +24,13 @@ Requires-Dist: loguru>=0.7.3
|
|
|
24
24
|
Requires-Dist: orjson>=3.11.5
|
|
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
|
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "perplexity-webui-scraper"
|
|
3
|
-
version = "0.3.
|
|
3
|
+
version = "0.3.7"
|
|
4
4
|
description = "Python scraper to extract AI responses from Perplexity's web interface."
|
|
5
5
|
authors = [{ name = "henrique-coder", email = "henriquemoreira10fk@gmail.com" }]
|
|
6
6
|
license = "MIT"
|
|
7
7
|
readme = "README.md"
|
|
8
|
-
requires-python = ">=3.10"
|
|
8
|
+
requires-python = ">=3.10,<3.15"
|
|
9
9
|
keywords = ["perplexity", "ai", "scraper", "webui", "api", "client"]
|
|
10
10
|
classifiers = [
|
|
11
11
|
"Development Status :: 4 - Beta",
|
|
@@ -35,13 +35,13 @@ dev = [
|
|
|
35
35
|
"beautifulsoup4>=4.14.3",
|
|
36
36
|
"jsbeautifier>=1.15.4",
|
|
37
37
|
"lxml>=6.0.2",
|
|
38
|
-
"prek>=0.
|
|
38
|
+
"prek>=0.3.0",
|
|
39
39
|
"python-dotenv>=1.2.1",
|
|
40
|
-
"rich>=14.
|
|
40
|
+
"rich>=14.3.1",
|
|
41
41
|
]
|
|
42
42
|
lint = [
|
|
43
|
-
"ruff>=0.14.
|
|
44
|
-
"ty>=0.0.
|
|
43
|
+
"ruff>=0.14.14",
|
|
44
|
+
"ty>=0.0.13",
|
|
45
45
|
]
|
|
46
46
|
tests = [
|
|
47
47
|
"pytest>=9.0.2",
|
|
@@ -49,7 +49,7 @@ tests = [
|
|
|
49
49
|
|
|
50
50
|
[project.optional-dependencies]
|
|
51
51
|
mcp = [
|
|
52
|
-
"fastmcp>=2.14.
|
|
52
|
+
"fastmcp>=2.14.4",
|
|
53
53
|
]
|
|
54
54
|
|
|
55
55
|
[project.urls]
|
|
@@ -92,7 +92,6 @@ fixable = ["ALL"] # Allow auto-fix for all enabled rules
|
|
|
92
92
|
dummy-variable-rgx = "^_$" # Only underscore is considered a dummy variable
|
|
93
93
|
|
|
94
94
|
[tool.ruff.lint.isort]
|
|
95
|
-
known-first-party = ["perplexity_webui_scraper"]
|
|
96
95
|
lines-after-imports = 2 # PEP 8: two blank lines after imports
|
|
97
96
|
force-sort-within-sections = true # Alphabetical order within each section
|
|
98
97
|
split-on-trailing-comma = true # Trailing comma triggers multi-line format
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -48,6 +48,21 @@ class Models:
|
|
|
48
48
|
Sonar - Perplexity's fast model.
|
|
49
49
|
"""
|
|
50
50
|
|
|
51
|
+
GEMINI_3_FLASH = Model(identifier="gemini30flash")
|
|
52
|
+
"""
|
|
53
|
+
Gemini 3 Flash - Google's fast reasoning model.
|
|
54
|
+
"""
|
|
55
|
+
|
|
56
|
+
GEMINI_3_FLASH_THINKING = Model(identifier="gemini30flash_high")
|
|
57
|
+
"""
|
|
58
|
+
Gemini 3 Flash Thinking - Google's fast reasoning model with enhanced thinking.
|
|
59
|
+
"""
|
|
60
|
+
|
|
61
|
+
GEMINI_3_PRO = Model(identifier="gemini30pro")
|
|
62
|
+
"""
|
|
63
|
+
Gemini 3 Pro - Google's newest reasoning model.
|
|
64
|
+
"""
|
|
65
|
+
|
|
51
66
|
GPT_52 = Model(identifier="gpt52")
|
|
52
67
|
"""
|
|
53
68
|
GPT-5.2 - OpenAI's latest model.
|
|
@@ -58,29 +73,24 @@ class Models:
|
|
|
58
73
|
GPT-5.2 Thinking - OpenAI's latest model with thinking.
|
|
59
74
|
"""
|
|
60
75
|
|
|
61
|
-
|
|
62
|
-
"""
|
|
63
|
-
Claude Opus 4.5 - Anthropic's Opus reasoning model.
|
|
64
|
-
"""
|
|
65
|
-
|
|
66
|
-
CLAUDE_45_OPUS_THINKING = Model(identifier="claude45opusthinking")
|
|
76
|
+
CLAUDE_45_SONNET = Model(identifier="claude45sonnet")
|
|
67
77
|
"""
|
|
68
|
-
Claude
|
|
78
|
+
Claude Sonnet 4.5 - Anthropic's newest advanced model.
|
|
69
79
|
"""
|
|
70
80
|
|
|
71
|
-
|
|
81
|
+
CLAUDE_45_SONNET_THINKING = Model(identifier="claude45sonnetthinking")
|
|
72
82
|
"""
|
|
73
|
-
|
|
83
|
+
Claude Sonnet 4.5 Thinking - Anthropic's newest reasoning model.
|
|
74
84
|
"""
|
|
75
85
|
|
|
76
|
-
|
|
86
|
+
CLAUDE_45_OPUS = Model(identifier="claude45opus")
|
|
77
87
|
"""
|
|
78
|
-
|
|
88
|
+
Claude Opus 4.5 - Anthropic's Opus reasoning model.
|
|
79
89
|
"""
|
|
80
90
|
|
|
81
|
-
|
|
91
|
+
CLAUDE_45_OPUS_THINKING = Model(identifier="claude45opusthinking")
|
|
82
92
|
"""
|
|
83
|
-
|
|
93
|
+
Claude Opus 4.5 Thinking - Anthropic's Opus reasoning model with thinking.
|
|
84
94
|
"""
|
|
85
95
|
|
|
86
96
|
GROK_41 = Model(identifier="grok41nonreasoning")
|
|
@@ -97,13 +107,3 @@ class Models:
|
|
|
97
107
|
"""
|
|
98
108
|
Kimi K2 Thinking - Moonshot AI's latest reasoning model.
|
|
99
109
|
"""
|
|
100
|
-
|
|
101
|
-
CLAUDE_45_SONNET = Model(identifier="claude45sonnet")
|
|
102
|
-
"""
|
|
103
|
-
Claude Sonnet 4.5 - Anthropic's newest advanced model.
|
|
104
|
-
"""
|
|
105
|
-
|
|
106
|
-
CLAUDE_45_SONNET_THINKING = Model(identifier="claude45sonnetthinking")
|
|
107
|
-
"""
|
|
108
|
-
Claude Sonnet 4.5 Thinking - Anthropic's newest reasoning model.
|
|
109
|
-
"""
|
|
File without changes
|
|
File without changes
|
|
File without changes
|