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.
@@ -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
- CLAUDE_45_OPUS = Model(identifier="claude45opus")
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 Opus 4.5 Thinking - Anthropic's Opus reasoning model with thinking.
78
+ Claude Sonnet 4.5 - Anthropic's newest advanced model.
69
79
  """
70
80
 
71
- GEMINI_3_PRO = Model(identifier="gemini30pro")
81
+ CLAUDE_45_SONNET_THINKING = Model(identifier="claude45sonnetthinking")
72
82
  """
73
- Gemini 3 Pro - Google's newest reasoning model.
83
+ Claude Sonnet 4.5 Thinking - Anthropic's newest reasoning model.
74
84
  """
75
85
 
76
- GEMINI_3_FLASH = Model(identifier="gemini30flash")
86
+ CLAUDE_45_OPUS = Model(identifier="claude45opus")
77
87
  """
78
- Gemini 3 Flash - Google's fast reasoning model.
88
+ Claude Opus 4.5 - Anthropic's Opus reasoning model.
79
89
  """
80
90
 
81
- GEMINI_3_FLASH_THINKING = Model(identifier="gemini30flash_high")
91
+ CLAUDE_45_OPUS_THINKING = Model(identifier="claude45opusthinking")
82
92
  """
83
- Gemini 3 Flash Thinking - Google's fast reasoning model with enhanced thinking.
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
- """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: perplexity-webui-scraper
3
- Version: 0.3.6
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.2 ; extra == 'mcp'
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: Issues, https://github.com/henrique-coder/perplexity-webui-scraper/issues
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
 
@@ -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=I5PhVD7B5XeeWfjWvXBtnl3CHMv4P59DO_hnYk9O0b0,2636
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.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,,
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,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: uv 0.9.21
2
+ Generator: uv 0.9.26
3
3
  Root-Is-Purelib: true
4
- Tag: py3-none-any
4
+ Tag: py3-none-any