perplexity-webui-scraper 0.3.6__py3-none-any.whl → 0.3.7__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/models.py +23 -23
- {perplexity_webui_scraper-0.3.6.dist-info → perplexity_webui_scraper-0.3.7.dist-info}/METADATA +6 -6
- {perplexity_webui_scraper-0.3.6.dist-info → perplexity_webui_scraper-0.3.7.dist-info}/RECORD +5 -5
- {perplexity_webui_scraper-0.3.6.dist-info → perplexity_webui_scraper-0.3.7.dist-info}/WHEEL +2 -2
- {perplexity_webui_scraper-0.3.6.dist-info → perplexity_webui_scraper-0.3.7.dist-info}/entry_points.txt +0 -0
|
@@ -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
|
-
"""
|
{perplexity_webui_scraper-0.3.6.dist-info → perplexity_webui_scraper-0.3.7.dist-info}/METADATA
RENAMED
|
@@ -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
|
|
{perplexity_webui_scraper-0.3.6.dist-info → perplexity_webui_scraper-0.3.7.dist-info}/RECORD
RENAMED
|
@@ -11,11 +11,11 @@ perplexity_webui_scraper/logging.py,sha256=jxgho9jjrZvr3tZ5m0z3caQQsqdtFT9sM-HDV
|
|
|
11
11
|
perplexity_webui_scraper/mcp/__init__.py,sha256=Ur7fmsPDrxewBzq9UdvMoFHp85a8pGsW32WBHG5pfrc,376
|
|
12
12
|
perplexity_webui_scraper/mcp/__main__.py,sha256=cmGev_HXYQK2hoNSQAziEo7bVqHdc0lXaTquzMItSiU,148
|
|
13
13
|
perplexity_webui_scraper/mcp/server.py,sha256=3RJeOHOjv048ZleUURG3sFdMaDHsSPmdn7GY47yAm2s,4758
|
|
14
|
-
perplexity_webui_scraper/models.py,sha256=
|
|
14
|
+
perplexity_webui_scraper/models.py,sha256=oQAYsMv3K5mxp6yKSpk197_RY7G5-W0SkvvJrIm5a7U,2636
|
|
15
15
|
perplexity_webui_scraper/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
perplexity_webui_scraper/resilience.py,sha256=sVsLW1kU6dMit4L6-dyPhVoT00EXGfokbEUnzvBNb0k,4680
|
|
17
17
|
perplexity_webui_scraper/types.py,sha256=qWsIABBxn1vcQQ2KUbC_hyiQHeaLsVb63epmRcpcmLk,1070
|
|
18
|
-
perplexity_webui_scraper-0.3.
|
|
19
|
-
perplexity_webui_scraper-0.3.
|
|
20
|
-
perplexity_webui_scraper-0.3.
|
|
21
|
-
perplexity_webui_scraper-0.3.
|
|
18
|
+
perplexity_webui_scraper-0.3.7.dist-info/WHEEL,sha256=XV0cjMrO7zXhVAIyyc8aFf1VjZ33Fen4IiJk5zFlC3g,80
|
|
19
|
+
perplexity_webui_scraper-0.3.7.dist-info/entry_points.txt,sha256=ODpXpDTkmoQ_o3Y3lsy22PLs-8ndapvMKYwxcz6A9gs,189
|
|
20
|
+
perplexity_webui_scraper-0.3.7.dist-info/METADATA,sha256=Qbm4QpSbLjBA08i8TmPxTsGBuxGs4sSiXeHR3Ga8vzA,12175
|
|
21
|
+
perplexity_webui_scraper-0.3.7.dist-info/RECORD,,
|
|
File without changes
|