mcp-server-fetch 2025.1.14__tar.gz → 2025.1.16__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {mcp_server_fetch-2025.1.14 → mcp_server_fetch-2025.1.16}/PKG-INFO +2 -2
- {mcp_server_fetch-2025.1.14 → mcp_server_fetch-2025.1.16}/pyproject.toml +2 -2
- {mcp_server_fetch-2025.1.14 → mcp_server_fetch-2025.1.16}/src/mcp_server_fetch/server.py +21 -20
- {mcp_server_fetch-2025.1.14 → mcp_server_fetch-2025.1.16}/uv.lock +101 -84
- {mcp_server_fetch-2025.1.14 → mcp_server_fetch-2025.1.16}/.gitignore +0 -0
- {mcp_server_fetch-2025.1.14 → mcp_server_fetch-2025.1.16}/.python-version +0 -0
- {mcp_server_fetch-2025.1.14 → mcp_server_fetch-2025.1.16}/Dockerfile +0 -0
- {mcp_server_fetch-2025.1.14 → mcp_server_fetch-2025.1.16}/LICENSE +0 -0
- {mcp_server_fetch-2025.1.14 → mcp_server_fetch-2025.1.16}/README.md +0 -0
- {mcp_server_fetch-2025.1.14 → mcp_server_fetch-2025.1.16}/src/mcp_server_fetch/__init__.py +0 -0
- {mcp_server_fetch-2025.1.14 → mcp_server_fetch-2025.1.16}/src/mcp_server_fetch/__main__.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: mcp-server-fetch
|
3
|
-
Version: 2025.1.
|
3
|
+
Version: 2025.1.16
|
4
4
|
Summary: A Model Context Protocol server providing tools to fetch and convert web content for usage by LLMs
|
5
5
|
Author: Anthropic, PBC.
|
6
6
|
Maintainer-email: Jack Adamson <jadamson@anthropic.com>
|
@@ -14,7 +14,7 @@ Classifier: Programming Language :: Python :: 3
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.10
|
15
15
|
Requires-Python: >=3.10
|
16
16
|
Requires-Dist: markdownify>=0.13.1
|
17
|
-
Requires-Dist: mcp>=1.
|
17
|
+
Requires-Dist: mcp>=1.1.3
|
18
18
|
Requires-Dist: protego>=0.3.1
|
19
19
|
Requires-Dist: pydantic>=2.0.0
|
20
20
|
Requires-Dist: readabilipy>=0.2.0
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "mcp-server-fetch"
|
3
|
-
version = "2025.1.
|
3
|
+
version = "2025.1.16"
|
4
4
|
description = "A Model Context Protocol server providing tools to fetch and convert web content for usage by LLMs"
|
5
5
|
readme = "README.md"
|
6
6
|
requires-python = ">=3.10"
|
@@ -17,7 +17,7 @@ classifiers = [
|
|
17
17
|
]
|
18
18
|
dependencies = [
|
19
19
|
"markdownify>=0.13.1",
|
20
|
-
"mcp>=1.
|
20
|
+
"mcp>=1.1.3",
|
21
21
|
"protego>=0.3.1",
|
22
22
|
"pydantic>=2.0.0",
|
23
23
|
"readabilipy>=0.2.0",
|
@@ -7,6 +7,7 @@ from mcp.shared.exceptions import McpError
|
|
7
7
|
from mcp.server import Server
|
8
8
|
from mcp.server.stdio import stdio_server
|
9
9
|
from mcp.types import (
|
10
|
+
ErrorData,
|
10
11
|
GetPromptResult,
|
11
12
|
Prompt,
|
12
13
|
PromptArgument,
|
@@ -79,15 +80,15 @@ async def check_may_autonomously_fetch_url(url: str, user_agent: str) -> None:
|
|
79
80
|
headers={"User-Agent": user_agent},
|
80
81
|
)
|
81
82
|
except HTTPError:
|
82
|
-
raise McpError(
|
83
|
-
INTERNAL_ERROR,
|
84
|
-
f"Failed to fetch robots.txt {robot_txt_url} due to a connection issue",
|
85
|
-
)
|
83
|
+
raise McpError(ErrorData(
|
84
|
+
code=INTERNAL_ERROR,
|
85
|
+
message=f"Failed to fetch robots.txt {robot_txt_url} due to a connection issue",
|
86
|
+
))
|
86
87
|
if response.status_code in (401, 403):
|
87
|
-
raise McpError(
|
88
|
-
INTERNAL_ERROR,
|
89
|
-
f"When fetching robots.txt ({robot_txt_url}), received status {response.status_code} so assuming that autonomous fetching is not allowed, the user can try manually fetching by using the fetch prompt",
|
90
|
-
)
|
88
|
+
raise McpError(ErrorData(
|
89
|
+
code=INTERNAL_ERROR,
|
90
|
+
message=f"When fetching robots.txt ({robot_txt_url}), received status {response.status_code} so assuming that autonomous fetching is not allowed, the user can try manually fetching by using the fetch prompt",
|
91
|
+
))
|
91
92
|
elif 400 <= response.status_code < 500:
|
92
93
|
return
|
93
94
|
robot_txt = response.text
|
@@ -96,15 +97,15 @@ async def check_may_autonomously_fetch_url(url: str, user_agent: str) -> None:
|
|
96
97
|
)
|
97
98
|
robot_parser = Protego.parse(processed_robot_txt)
|
98
99
|
if not robot_parser.can_fetch(str(url), user_agent):
|
99
|
-
raise McpError(
|
100
|
-
INTERNAL_ERROR,
|
101
|
-
f"The sites robots.txt ({robot_txt_url}), specifies that autonomous fetching of this page is not allowed, "
|
100
|
+
raise McpError(ErrorData(
|
101
|
+
code=INTERNAL_ERROR,
|
102
|
+
message=f"The sites robots.txt ({robot_txt_url}), specifies that autonomous fetching of this page is not allowed, "
|
102
103
|
f"<useragent>{user_agent}</useragent>\n"
|
103
104
|
f"<url>{url}</url>"
|
104
105
|
f"<robots>\n{robot_txt}\n</robots>\n"
|
105
106
|
f"The assistant must let the user know that it failed to view the page. The assistant may provide further guidance based on the above information.\n"
|
106
107
|
f"The assistant can tell the user that they can try manually fetching the page by using the fetch prompt within their UI.",
|
107
|
-
)
|
108
|
+
))
|
108
109
|
|
109
110
|
|
110
111
|
async def fetch_url(
|
@@ -124,12 +125,12 @@ async def fetch_url(
|
|
124
125
|
timeout=30,
|
125
126
|
)
|
126
127
|
except HTTPError as e:
|
127
|
-
raise McpError(INTERNAL_ERROR, f"Failed to fetch {url}: {e!r}")
|
128
|
+
raise McpError(ErrorData(code=INTERNAL_ERROR, message=f"Failed to fetch {url}: {e!r}"))
|
128
129
|
if response.status_code >= 400:
|
129
|
-
raise McpError(
|
130
|
-
INTERNAL_ERROR,
|
131
|
-
f"Failed to fetch {url} - status code {response.status_code}",
|
132
|
-
)
|
130
|
+
raise McpError(ErrorData(
|
131
|
+
code=INTERNAL_ERROR,
|
132
|
+
message=f"Failed to fetch {url} - status code {response.status_code}",
|
133
|
+
))
|
133
134
|
|
134
135
|
page_raw = response.text
|
135
136
|
|
@@ -221,11 +222,11 @@ Although originally you did not have internet access, and were advised to refuse
|
|
221
222
|
try:
|
222
223
|
args = Fetch(**arguments)
|
223
224
|
except ValueError as e:
|
224
|
-
raise McpError(INVALID_PARAMS, str(e))
|
225
|
+
raise McpError(ErrorData(code=INVALID_PARAMS, message=str(e)))
|
225
226
|
|
226
227
|
url = str(args.url)
|
227
228
|
if not url:
|
228
|
-
raise McpError(INVALID_PARAMS, "URL is required")
|
229
|
+
raise McpError(ErrorData(code=INVALID_PARAMS, message="URL is required"))
|
229
230
|
|
230
231
|
if not ignore_robots_txt:
|
231
232
|
await check_may_autonomously_fetch_url(url, user_agent_autonomous)
|
@@ -253,7 +254,7 @@ Although originally you did not have internet access, and were advised to refuse
|
|
253
254
|
@server.get_prompt()
|
254
255
|
async def get_prompt(name: str, arguments: dict | None) -> GetPromptResult:
|
255
256
|
if not arguments or "url" not in arguments:
|
256
|
-
raise McpError(INVALID_PARAMS, "URL is required")
|
257
|
+
raise McpError(ErrorData(code=INVALID_PARAMS, message="URL is required"))
|
257
258
|
|
258
259
|
url = arguments["url"]
|
259
260
|
|
@@ -48,71 +48,63 @@ wheels = [
|
|
48
48
|
|
49
49
|
[[package]]
|
50
50
|
name = "charset-normalizer"
|
51
|
-
version = "3.4.
|
52
|
-
source = { registry = "https://pypi.org/simple" }
|
53
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
54
|
-
wheels = [
|
55
|
-
{ url = "https://files.pythonhosted.org/packages/
|
56
|
-
{ url = "https://files.pythonhosted.org/packages/
|
57
|
-
{ url = "https://files.pythonhosted.org/packages/
|
58
|
-
{ url = "https://files.pythonhosted.org/packages/
|
59
|
-
{ url = "https://files.pythonhosted.org/packages/
|
60
|
-
{ url = "https://files.pythonhosted.org/packages/
|
61
|
-
{ url = "https://files.pythonhosted.org/packages/
|
62
|
-
{ url = "https://files.pythonhosted.org/packages/
|
63
|
-
{ url = "https://files.pythonhosted.org/packages/
|
64
|
-
{ url = "https://files.pythonhosted.org/packages/
|
65
|
-
{ url = "https://files.pythonhosted.org/packages/
|
66
|
-
{ url = "https://files.pythonhosted.org/packages/
|
67
|
-
{ url = "https://files.pythonhosted.org/packages/
|
68
|
-
{ url = "https://files.pythonhosted.org/packages/
|
69
|
-
{ url = "https://files.pythonhosted.org/packages/
|
70
|
-
{ url = "https://files.pythonhosted.org/packages/
|
71
|
-
{ url = "https://files.pythonhosted.org/packages/
|
72
|
-
{ url = "https://files.pythonhosted.org/packages/
|
73
|
-
{ url = "https://files.pythonhosted.org/packages/
|
74
|
-
{ url = "https://files.pythonhosted.org/packages/
|
75
|
-
{ url = "https://files.pythonhosted.org/packages/
|
76
|
-
{ url = "https://files.pythonhosted.org/packages/
|
77
|
-
{ url = "https://files.pythonhosted.org/packages/
|
78
|
-
{ url = "https://files.pythonhosted.org/packages/
|
79
|
-
{ url = "https://files.pythonhosted.org/packages/
|
80
|
-
{ url = "https://files.pythonhosted.org/packages/
|
81
|
-
{ url = "https://files.pythonhosted.org/packages/
|
82
|
-
{ url = "https://files.pythonhosted.org/packages/
|
83
|
-
{ url = "https://files.pythonhosted.org/packages/
|
84
|
-
{ url = "https://files.pythonhosted.org/packages/
|
85
|
-
{ url = "https://files.pythonhosted.org/packages/
|
86
|
-
{ url = "https://files.pythonhosted.org/packages/
|
87
|
-
{ url = "https://files.pythonhosted.org/packages/
|
88
|
-
{ url = "https://files.pythonhosted.org/packages/
|
89
|
-
{ url = "https://files.pythonhosted.org/packages/
|
90
|
-
{ url = "https://files.pythonhosted.org/packages/
|
91
|
-
{ url = "https://files.pythonhosted.org/packages/
|
92
|
-
{ url = "https://files.pythonhosted.org/packages/
|
93
|
-
{ url = "https://files.pythonhosted.org/packages/
|
94
|
-
{ url = "https://files.pythonhosted.org/packages/
|
95
|
-
{ url = "https://files.pythonhosted.org/packages/
|
96
|
-
{ url = "https://files.pythonhosted.org/packages/
|
97
|
-
{ url = "https://files.pythonhosted.org/packages/
|
98
|
-
{ url = "https://files.pythonhosted.org/packages/
|
99
|
-
{ url = "https://files.pythonhosted.org/packages/
|
100
|
-
{ url = "https://files.pythonhosted.org/packages/
|
101
|
-
{ url = "https://files.pythonhosted.org/packages/
|
102
|
-
{ url = "https://files.pythonhosted.org/packages/
|
103
|
-
{ url = "https://files.pythonhosted.org/packages/
|
104
|
-
{ url = "https://files.pythonhosted.org/packages/
|
105
|
-
{ url = "https://files.pythonhosted.org/packages/
|
106
|
-
{ url = "https://files.pythonhosted.org/packages/
|
107
|
-
{ url = "https://files.pythonhosted.org/packages/
|
108
|
-
{ url = "https://files.pythonhosted.org/packages/0c/75/1ed813c3ffd200b1f3e71121c95da3f79e6d2a96120163443b3ad1057505/charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88", size = 140251 },
|
109
|
-
{ url = "https://files.pythonhosted.org/packages/7d/0d/6f32255c1979653b448d3c709583557a4d24ff97ac4f3a5be156b2e6a210/charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90", size = 148474 },
|
110
|
-
{ url = "https://files.pythonhosted.org/packages/ac/a0/c1b5298de4670d997101fef95b97ac440e8c8d8b4efa5a4d1ef44af82f0d/charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b", size = 151849 },
|
111
|
-
{ url = "https://files.pythonhosted.org/packages/04/4f/b3961ba0c664989ba63e30595a3ed0875d6790ff26671e2aae2fdc28a399/charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d", size = 149781 },
|
112
|
-
{ url = "https://files.pythonhosted.org/packages/d8/90/6af4cd042066a4adad58ae25648a12c09c879efa4849c705719ba1b23d8c/charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482", size = 144970 },
|
113
|
-
{ url = "https://files.pythonhosted.org/packages/cc/67/e5e7e0cbfefc4ca79025238b43cdf8a2037854195b37d6417f3d0895c4c2/charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67", size = 94973 },
|
114
|
-
{ url = "https://files.pythonhosted.org/packages/65/97/fc9bbc54ee13d33dc54a7fcf17b26368b18505500fc01e228c27b5222d80/charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b", size = 102308 },
|
115
|
-
{ url = "https://files.pythonhosted.org/packages/bf/9b/08c0432272d77b04803958a4598a51e2a4b51c06640af8b8f0f908c18bf2/charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079", size = 49446 },
|
51
|
+
version = "3.4.1"
|
52
|
+
source = { registry = "https://pypi.org/simple" }
|
53
|
+
sdist = { url = "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz", hash = "sha256:44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3", size = 123188 }
|
54
|
+
wheels = [
|
55
|
+
{ url = "https://files.pythonhosted.org/packages/0d/58/5580c1716040bc89206c77d8f74418caf82ce519aae06450393ca73475d1/charset_normalizer-3.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:91b36a978b5ae0ee86c394f5a54d6ef44db1de0815eb43de826d41d21e4af3de", size = 198013 },
|
56
|
+
{ url = "https://files.pythonhosted.org/packages/d0/11/00341177ae71c6f5159a08168bcb98c6e6d196d372c94511f9f6c9afe0c6/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7461baadb4dc00fd9e0acbe254e3d7d2112e7f92ced2adc96e54ef6501c5f176", size = 141285 },
|
57
|
+
{ url = "https://files.pythonhosted.org/packages/01/09/11d684ea5819e5a8f5100fb0b38cf8d02b514746607934134d31233e02c8/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e218488cd232553829be0664c2292d3af2eeeb94b32bea483cf79ac6a694e037", size = 151449 },
|
58
|
+
{ url = "https://files.pythonhosted.org/packages/08/06/9f5a12939db324d905dc1f70591ae7d7898d030d7662f0d426e2286f68c9/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80ed5e856eb7f30115aaf94e4a08114ccc8813e6ed1b5efa74f9f82e8509858f", size = 143892 },
|
59
|
+
{ url = "https://files.pythonhosted.org/packages/93/62/5e89cdfe04584cb7f4d36003ffa2936681b03ecc0754f8e969c2becb7e24/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b010a7a4fd316c3c484d482922d13044979e78d1861f0e0650423144c616a46a", size = 146123 },
|
60
|
+
{ url = "https://files.pythonhosted.org/packages/a9/ac/ab729a15c516da2ab70a05f8722ecfccc3f04ed7a18e45c75bbbaa347d61/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4532bff1b8421fd0a320463030c7520f56a79c9024a4e88f01c537316019005a", size = 147943 },
|
61
|
+
{ url = "https://files.pythonhosted.org/packages/03/d2/3f392f23f042615689456e9a274640c1d2e5dd1d52de36ab8f7955f8f050/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d973f03c0cb71c5ed99037b870f2be986c3c05e63622c017ea9816881d2dd247", size = 142063 },
|
62
|
+
{ url = "https://files.pythonhosted.org/packages/f2/e3/e20aae5e1039a2cd9b08d9205f52142329f887f8cf70da3650326670bddf/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3a3bd0dcd373514dcec91c411ddb9632c0d7d92aed7093b8c3bbb6d69ca74408", size = 150578 },
|
63
|
+
{ url = "https://files.pythonhosted.org/packages/8d/af/779ad72a4da0aed925e1139d458adc486e61076d7ecdcc09e610ea8678db/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:d9c3cdf5390dcd29aa8056d13e8e99526cda0305acc038b96b30352aff5ff2bb", size = 153629 },
|
64
|
+
{ url = "https://files.pythonhosted.org/packages/c2/b6/7aa450b278e7aa92cf7732140bfd8be21f5f29d5bf334ae987c945276639/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:2bdfe3ac2e1bbe5b59a1a63721eb3b95fc9b6817ae4a46debbb4e11f6232428d", size = 150778 },
|
65
|
+
{ url = "https://files.pythonhosted.org/packages/39/f4/d9f4f712d0951dcbfd42920d3db81b00dd23b6ab520419626f4023334056/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:eab677309cdb30d047996b36d34caeda1dc91149e4fdca0b1a039b3f79d9a807", size = 146453 },
|
66
|
+
{ url = "https://files.pythonhosted.org/packages/49/2b/999d0314e4ee0cff3cb83e6bc9aeddd397eeed693edb4facb901eb8fbb69/charset_normalizer-3.4.1-cp310-cp310-win32.whl", hash = "sha256:c0429126cf75e16c4f0ad00ee0eae4242dc652290f940152ca8c75c3a4b6ee8f", size = 95479 },
|
67
|
+
{ url = "https://files.pythonhosted.org/packages/2d/ce/3cbed41cff67e455a386fb5e5dd8906cdda2ed92fbc6297921f2e4419309/charset_normalizer-3.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:9f0b8b1c6d84c8034a44893aba5e767bf9c7a211e313a9605d9c617d7083829f", size = 102790 },
|
68
|
+
{ url = "https://files.pythonhosted.org/packages/72/80/41ef5d5a7935d2d3a773e3eaebf0a9350542f2cab4eac59a7a4741fbbbbe/charset_normalizer-3.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8bfa33f4f2672964266e940dd22a195989ba31669bd84629f05fab3ef4e2d125", size = 194995 },
|
69
|
+
{ url = "https://files.pythonhosted.org/packages/7a/28/0b9fefa7b8b080ec492110af6d88aa3dea91c464b17d53474b6e9ba5d2c5/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28bf57629c75e810b6ae989f03c0828d64d6b26a5e205535585f96093e405ed1", size = 139471 },
|
70
|
+
{ url = "https://files.pythonhosted.org/packages/71/64/d24ab1a997efb06402e3fc07317e94da358e2585165930d9d59ad45fcae2/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f08ff5e948271dc7e18a35641d2f11a4cd8dfd5634f55228b691e62b37125eb3", size = 149831 },
|
71
|
+
{ url = "https://files.pythonhosted.org/packages/37/ed/be39e5258e198655240db5e19e0b11379163ad7070962d6b0c87ed2c4d39/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:234ac59ea147c59ee4da87a0c0f098e9c8d169f4dc2a159ef720f1a61bbe27cd", size = 142335 },
|
72
|
+
{ url = "https://files.pythonhosted.org/packages/88/83/489e9504711fa05d8dde1574996408026bdbdbd938f23be67deebb5eca92/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd4ec41f914fa74ad1b8304bbc634b3de73d2a0889bd32076342a573e0779e00", size = 143862 },
|
73
|
+
{ url = "https://files.pythonhosted.org/packages/c6/c7/32da20821cf387b759ad24627a9aca289d2822de929b8a41b6241767b461/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eea6ee1db730b3483adf394ea72f808b6e18cf3cb6454b4d86e04fa8c4327a12", size = 145673 },
|
74
|
+
{ url = "https://files.pythonhosted.org/packages/68/85/f4288e96039abdd5aeb5c546fa20a37b50da71b5cf01e75e87f16cd43304/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c96836c97b1238e9c9e3fe90844c947d5afbf4f4c92762679acfe19927d81d77", size = 140211 },
|
75
|
+
{ url = "https://files.pythonhosted.org/packages/28/a3/a42e70d03cbdabc18997baf4f0227c73591a08041c149e710045c281f97b/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4d86f7aff21ee58f26dcf5ae81a9addbd914115cdebcbb2217e4f0ed8982e146", size = 148039 },
|
76
|
+
{ url = "https://files.pythonhosted.org/packages/85/e4/65699e8ab3014ecbe6f5c71d1a55d810fb716bbfd74f6283d5c2aa87febf/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:09b5e6733cbd160dcc09589227187e242a30a49ca5cefa5a7edd3f9d19ed53fd", size = 151939 },
|
77
|
+
{ url = "https://files.pythonhosted.org/packages/b1/82/8e9fe624cc5374193de6860aba3ea8070f584c8565ee77c168ec13274bd2/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:5777ee0881f9499ed0f71cc82cf873d9a0ca8af166dfa0af8ec4e675b7df48e6", size = 149075 },
|
78
|
+
{ url = "https://files.pythonhosted.org/packages/3d/7b/82865ba54c765560c8433f65e8acb9217cb839a9e32b42af4aa8e945870f/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:237bdbe6159cff53b4f24f397d43c6336c6b0b42affbe857970cefbb620911c8", size = 144340 },
|
79
|
+
{ url = "https://files.pythonhosted.org/packages/b5/b6/9674a4b7d4d99a0d2df9b215da766ee682718f88055751e1e5e753c82db0/charset_normalizer-3.4.1-cp311-cp311-win32.whl", hash = "sha256:8417cb1f36cc0bc7eaba8ccb0e04d55f0ee52df06df3ad55259b9a323555fc8b", size = 95205 },
|
80
|
+
{ url = "https://files.pythonhosted.org/packages/1e/ab/45b180e175de4402dcf7547e4fb617283bae54ce35c27930a6f35b6bef15/charset_normalizer-3.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:d7f50a1f8c450f3925cb367d011448c39239bb3eb4117c36a6d354794de4ce76", size = 102441 },
|
81
|
+
{ url = "https://files.pythonhosted.org/packages/0a/9a/dd1e1cdceb841925b7798369a09279bd1cf183cef0f9ddf15a3a6502ee45/charset_normalizer-3.4.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:73d94b58ec7fecbc7366247d3b0b10a21681004153238750bb67bd9012414545", size = 196105 },
|
82
|
+
{ url = "https://files.pythonhosted.org/packages/d3/8c/90bfabf8c4809ecb648f39794cf2a84ff2e7d2a6cf159fe68d9a26160467/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dad3e487649f498dd991eeb901125411559b22e8d7ab25d3aeb1af367df5efd7", size = 140404 },
|
83
|
+
{ url = "https://files.pythonhosted.org/packages/ad/8f/e410d57c721945ea3b4f1a04b74f70ce8fa800d393d72899f0a40526401f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c30197aa96e8eed02200a83fba2657b4c3acd0f0aa4bdc9f6c1af8e8962e0757", size = 150423 },
|
84
|
+
{ url = "https://files.pythonhosted.org/packages/f0/b8/e6825e25deb691ff98cf5c9072ee0605dc2acfca98af70c2d1b1bc75190d/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2369eea1ee4a7610a860d88f268eb39b95cb588acd7235e02fd5a5601773d4fa", size = 143184 },
|
85
|
+
{ url = "https://files.pythonhosted.org/packages/3e/a2/513f6cbe752421f16d969e32f3583762bfd583848b763913ddab8d9bfd4f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc2722592d8998c870fa4e290c2eec2c1569b87fe58618e67d38b4665dfa680d", size = 145268 },
|
86
|
+
{ url = "https://files.pythonhosted.org/packages/74/94/8a5277664f27c3c438546f3eb53b33f5b19568eb7424736bdc440a88a31f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffc9202a29ab3920fa812879e95a9e78b2465fd10be7fcbd042899695d75e616", size = 147601 },
|
87
|
+
{ url = "https://files.pythonhosted.org/packages/7c/5f/6d352c51ee763623a98e31194823518e09bfa48be2a7e8383cf691bbb3d0/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:804a4d582ba6e5b747c625bf1255e6b1507465494a40a2130978bda7b932c90b", size = 141098 },
|
88
|
+
{ url = "https://files.pythonhosted.org/packages/78/d4/f5704cb629ba5ab16d1d3d741396aec6dc3ca2b67757c45b0599bb010478/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0f55e69f030f7163dffe9fd0752b32f070566451afe180f99dbeeb81f511ad8d", size = 149520 },
|
89
|
+
{ url = "https://files.pythonhosted.org/packages/c5/96/64120b1d02b81785f222b976c0fb79a35875457fa9bb40827678e54d1bc8/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c4c3e6da02df6fa1410a7680bd3f63d4f710232d3139089536310d027950696a", size = 152852 },
|
90
|
+
{ url = "https://files.pythonhosted.org/packages/84/c9/98e3732278a99f47d487fd3468bc60b882920cef29d1fa6ca460a1fdf4e6/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:5df196eb874dae23dcfb968c83d4f8fdccb333330fe1fc278ac5ceeb101003a9", size = 150488 },
|
91
|
+
{ url = "https://files.pythonhosted.org/packages/13/0e/9c8d4cb99c98c1007cc11eda969ebfe837bbbd0acdb4736d228ccaabcd22/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e358e64305fe12299a08e08978f51fc21fac060dcfcddd95453eabe5b93ed0e1", size = 146192 },
|
92
|
+
{ url = "https://files.pythonhosted.org/packages/b2/21/2b6b5b860781a0b49427309cb8670785aa543fb2178de875b87b9cc97746/charset_normalizer-3.4.1-cp312-cp312-win32.whl", hash = "sha256:9b23ca7ef998bc739bf6ffc077c2116917eabcc901f88da1b9856b210ef63f35", size = 95550 },
|
93
|
+
{ url = "https://files.pythonhosted.org/packages/21/5b/1b390b03b1d16c7e382b561c5329f83cc06623916aab983e8ab9239c7d5c/charset_normalizer-3.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:6ff8a4a60c227ad87030d76e99cd1698345d4491638dfa6673027c48b3cd395f", size = 102785 },
|
94
|
+
{ url = "https://files.pythonhosted.org/packages/38/94/ce8e6f63d18049672c76d07d119304e1e2d7c6098f0841b51c666e9f44a0/charset_normalizer-3.4.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:aabfa34badd18f1da5ec1bc2715cadc8dca465868a4e73a0173466b688f29dda", size = 195698 },
|
95
|
+
{ url = "https://files.pythonhosted.org/packages/24/2e/dfdd9770664aae179a96561cc6952ff08f9a8cd09a908f259a9dfa063568/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22e14b5d70560b8dd51ec22863f370d1e595ac3d024cb8ad7d308b4cd95f8313", size = 140162 },
|
96
|
+
{ url = "https://files.pythonhosted.org/packages/24/4e/f646b9093cff8fc86f2d60af2de4dc17c759de9d554f130b140ea4738ca6/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8436c508b408b82d87dc5f62496973a1805cd46727c34440b0d29d8a2f50a6c9", size = 150263 },
|
97
|
+
{ url = "https://files.pythonhosted.org/packages/5e/67/2937f8d548c3ef6e2f9aab0f6e21001056f692d43282b165e7c56023e6dd/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2d074908e1aecee37a7635990b2c6d504cd4766c7bc9fc86d63f9c09af3fa11b", size = 142966 },
|
98
|
+
{ url = "https://files.pythonhosted.org/packages/52/ed/b7f4f07de100bdb95c1756d3a4d17b90c1a3c53715c1a476f8738058e0fa/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:955f8851919303c92343d2f66165294848d57e9bba6cf6e3625485a70a038d11", size = 144992 },
|
99
|
+
{ url = "https://files.pythonhosted.org/packages/96/2c/d49710a6dbcd3776265f4c923bb73ebe83933dfbaa841c5da850fe0fd20b/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:44ecbf16649486d4aebafeaa7ec4c9fed8b88101f4dd612dcaf65d5e815f837f", size = 147162 },
|
100
|
+
{ url = "https://files.pythonhosted.org/packages/b4/41/35ff1f9a6bd380303dea55e44c4933b4cc3c4850988927d4082ada230273/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0924e81d3d5e70f8126529951dac65c1010cdf117bb75eb02dd12339b57749dd", size = 140972 },
|
101
|
+
{ url = "https://files.pythonhosted.org/packages/fb/43/c6a0b685fe6910d08ba971f62cd9c3e862a85770395ba5d9cad4fede33ab/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2967f74ad52c3b98de4c3b32e1a44e32975e008a9cd2a8cc8966d6a5218c5cb2", size = 149095 },
|
102
|
+
{ url = "https://files.pythonhosted.org/packages/4c/ff/a9a504662452e2d2878512115638966e75633519ec11f25fca3d2049a94a/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c75cb2a3e389853835e84a2d8fb2b81a10645b503eca9bcb98df6b5a43eb8886", size = 152668 },
|
103
|
+
{ url = "https://files.pythonhosted.org/packages/6c/71/189996b6d9a4b932564701628af5cee6716733e9165af1d5e1b285c530ed/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:09b26ae6b1abf0d27570633b2b078a2a20419c99d66fb2823173d73f188ce601", size = 150073 },
|
104
|
+
{ url = "https://files.pythonhosted.org/packages/e4/93/946a86ce20790e11312c87c75ba68d5f6ad2208cfb52b2d6a2c32840d922/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fa88b843d6e211393a37219e6a1c1df99d35e8fd90446f1118f4216e307e48cd", size = 145732 },
|
105
|
+
{ url = "https://files.pythonhosted.org/packages/cd/e5/131d2fb1b0dddafc37be4f3a2fa79aa4c037368be9423061dccadfd90091/charset_normalizer-3.4.1-cp313-cp313-win32.whl", hash = "sha256:eb8178fe3dba6450a3e024e95ac49ed3400e506fd4e9e5c32d30adda88cbd407", size = 95391 },
|
106
|
+
{ url = "https://files.pythonhosted.org/packages/27/f2/4f9a69cc7712b9b5ad8fdb87039fd89abba997ad5cbe690d1835d40405b0/charset_normalizer-3.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:b1ac5992a838106edb89654e0aebfc24f5848ae2547d22c2c3f66454daa11971", size = 102702 },
|
107
|
+
{ url = "https://files.pythonhosted.org/packages/0e/f6/65ecc6878a89bb1c23a086ea335ad4bf21a588990c3f535a227b9eea9108/charset_normalizer-3.4.1-py3-none-any.whl", hash = "sha256:d98b1668f06378c6dbefec3b92299716b931cd4e6061f3c875a71ced1780ab85", size = 49767 },
|
116
108
|
]
|
117
109
|
|
118
110
|
[[package]]
|
@@ -169,30 +161,31 @@ wheels = [
|
|
169
161
|
|
170
162
|
[[package]]
|
171
163
|
name = "httpcore"
|
172
|
-
version = "1.0.
|
164
|
+
version = "1.0.5"
|
173
165
|
source = { registry = "https://pypi.org/simple" }
|
174
166
|
dependencies = [
|
175
167
|
{ name = "certifi" },
|
176
168
|
{ name = "h11" },
|
177
169
|
]
|
178
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
170
|
+
sdist = { url = "https://files.pythonhosted.org/packages/17/b0/5e8b8674f8d203335a62fdfcfa0d11ebe09e23613c3391033cbba35f7926/httpcore-1.0.5.tar.gz", hash = "sha256:34a38e2f9291467ee3b44e89dd52615370e152954ba21721378a87b2960f7a61", size = 83234 }
|
179
171
|
wheels = [
|
180
|
-
{ url = "https://files.pythonhosted.org/packages/
|
172
|
+
{ url = "https://files.pythonhosted.org/packages/78/d4/e5d7e4f2174f8a4d63c8897d79eb8fe2503f7ecc03282fee1fa2719c2704/httpcore-1.0.5-py3-none-any.whl", hash = "sha256:421f18bac248b25d310f3cacd198d55b8e6125c107797b609ff9b7a6ba7991b5", size = 77926 },
|
181
173
|
]
|
182
174
|
|
183
175
|
[[package]]
|
184
176
|
name = "httpx"
|
185
|
-
version = "0.
|
177
|
+
version = "0.27.2"
|
186
178
|
source = { registry = "https://pypi.org/simple" }
|
187
179
|
dependencies = [
|
188
180
|
{ name = "anyio" },
|
189
181
|
{ name = "certifi" },
|
190
182
|
{ name = "httpcore" },
|
191
183
|
{ name = "idna" },
|
184
|
+
{ name = "sniffio" },
|
192
185
|
]
|
193
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
186
|
+
sdist = { url = "https://files.pythonhosted.org/packages/78/82/08f8c936781f67d9e6b9eeb8a0c8b4e406136ea4c3d1f89a5db71d42e0e6/httpx-0.27.2.tar.gz", hash = "sha256:f7c2be1d2f3c3c3160d441802406b206c2b76f5947b11115e6df10c6c65e66c2", size = 144189 }
|
194
187
|
wheels = [
|
195
|
-
{ url = "https://files.pythonhosted.org/packages/
|
188
|
+
{ url = "https://files.pythonhosted.org/packages/56/95/9377bcb415797e44274b51d46e3249eba641711cf3348050f76ee7b15ffc/httpx-0.27.2-py3-none-any.whl", hash = "sha256:7bb2708e112d8fdd7829cd4243970f0c223274051cb35ee80c03301ee29a3df0", size = 76395 },
|
196
189
|
]
|
197
190
|
|
198
191
|
[[package]]
|
@@ -310,19 +303,21 @@ wheels = [
|
|
310
303
|
|
311
304
|
[[package]]
|
312
305
|
name = "mcp"
|
313
|
-
version = "1.
|
306
|
+
version = "1.2.0"
|
314
307
|
source = { registry = "https://pypi.org/simple" }
|
315
308
|
dependencies = [
|
316
309
|
{ name = "anyio" },
|
317
310
|
{ name = "httpx" },
|
318
311
|
{ name = "httpx-sse" },
|
319
312
|
{ name = "pydantic" },
|
313
|
+
{ name = "pydantic-settings" },
|
320
314
|
{ name = "sse-starlette" },
|
321
315
|
{ name = "starlette" },
|
316
|
+
{ name = "uvicorn" },
|
322
317
|
]
|
323
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
318
|
+
sdist = { url = "https://files.pythonhosted.org/packages/ab/a5/b08dc846ebedae9f17ced878e6975826e90e448cd4592f532f6a88a925a7/mcp-1.2.0.tar.gz", hash = "sha256:2b06c7ece98d6ea9e6379caa38d74b432385c338fb530cb82e2c70ea7add94f5", size = 102973 }
|
324
319
|
wheels = [
|
325
|
-
{ url = "https://files.pythonhosted.org/packages/
|
320
|
+
{ url = "https://files.pythonhosted.org/packages/af/84/fca78f19ac8ce6c53ba416247c71baa53a9e791e98d3c81edbc20a77d6d1/mcp-1.2.0-py3-none-any.whl", hash = "sha256:1d0e77d8c14955a5aea1f5aa1f444c8e531c09355c829b20e42f7a142bc0755f", size = 66468 },
|
326
321
|
]
|
327
322
|
|
328
323
|
[[package]]
|
@@ -347,7 +342,7 @@ dev = [
|
|
347
342
|
[package.metadata]
|
348
343
|
requires-dist = [
|
349
344
|
{ name = "markdownify", specifier = ">=0.13.1" },
|
350
|
-
{ name = "mcp", specifier = ">=1.
|
345
|
+
{ name = "mcp", specifier = ">=1.1.3" },
|
351
346
|
{ name = "protego", specifier = ">=0.3.1" },
|
352
347
|
{ name = "pydantic", specifier = ">=2.0.0" },
|
353
348
|
{ name = "readabilipy", specifier = ">=0.2.0" },
|
@@ -380,16 +375,16 @@ wheels = [
|
|
380
375
|
|
381
376
|
[[package]]
|
382
377
|
name = "pydantic"
|
383
|
-
version = "2.10.
|
378
|
+
version = "2.10.1"
|
384
379
|
source = { registry = "https://pypi.org/simple" }
|
385
380
|
dependencies = [
|
386
381
|
{ name = "annotated-types" },
|
387
382
|
{ name = "pydantic-core" },
|
388
383
|
{ name = "typing-extensions" },
|
389
384
|
]
|
390
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
385
|
+
sdist = { url = "https://files.pythonhosted.org/packages/c4/bd/7fc610993f616d2398958d0028d15eaf53bde5f80cb2edb7aa4f1feaf3a7/pydantic-2.10.1.tar.gz", hash = "sha256:a4daca2dc0aa429555e0656d6bf94873a7dc5f54ee42b1f5873d666fb3f35560", size = 783717 }
|
391
386
|
wheels = [
|
392
|
-
{ url = "https://files.pythonhosted.org/packages/
|
387
|
+
{ url = "https://files.pythonhosted.org/packages/e0/fc/fda48d347bd50a788dd2a0f318a52160f911b86fc2d8b4c86f4d7c9bceea/pydantic-2.10.1-py3-none-any.whl", hash = "sha256:a8d20db84de64cf4a7d59e899c2caf0fe9d660c7cfc482528e7020d7dd189a7e", size = 455329 },
|
393
388
|
]
|
394
389
|
|
395
390
|
[[package]]
|
@@ -467,6 +462,19 @@ wheels = [
|
|
467
462
|
{ url = "https://files.pythonhosted.org/packages/33/72/f881b5e18fbb67cf2fb4ab253660de3c6899dbb2dba409d0b757e3559e3d/pydantic_core-2.27.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:981fb88516bd1ae8b0cbbd2034678a39dedc98752f264ac9bc5839d3923fa04c", size = 2001864 },
|
468
463
|
]
|
469
464
|
|
465
|
+
[[package]]
|
466
|
+
name = "pydantic-settings"
|
467
|
+
version = "2.6.1"
|
468
|
+
source = { registry = "https://pypi.org/simple" }
|
469
|
+
dependencies = [
|
470
|
+
{ name = "pydantic" },
|
471
|
+
{ name = "python-dotenv" },
|
472
|
+
]
|
473
|
+
sdist = { url = "https://files.pythonhosted.org/packages/b5/d4/9dfbe238f45ad8b168f5c96ee49a3df0598ce18a0795a983b419949ce65b/pydantic_settings-2.6.1.tar.gz", hash = "sha256:e0f92546d8a9923cb8941689abf85d6601a8c19a23e97a34b2964a2e3f813ca0", size = 75646 }
|
474
|
+
wheels = [
|
475
|
+
{ url = "https://files.pythonhosted.org/packages/5e/f9/ff95fd7d760af42f647ea87f9b8a383d891cdb5e5dbd4613edaeb094252a/pydantic_settings-2.6.1-py3-none-any.whl", hash = "sha256:7fb0637c786a558d3103436278a7c4f1cfd29ba8973238a50c5bb9a55387da87", size = 28595 },
|
476
|
+
]
|
477
|
+
|
470
478
|
[[package]]
|
471
479
|
name = "pyright"
|
472
480
|
version = "1.1.389"
|
@@ -480,6 +488,15 @@ wheels = [
|
|
480
488
|
{ url = "https://files.pythonhosted.org/packages/1b/26/c288cabf8cfc5a27e1aa9e5029b7682c0f920b8074f45d22bf844314d66a/pyright-1.1.389-py3-none-any.whl", hash = "sha256:41e9620bba9254406dc1f621a88ceab5a88af4c826feb4f614d95691ed243a60", size = 18581 },
|
481
489
|
]
|
482
490
|
|
491
|
+
[[package]]
|
492
|
+
name = "python-dotenv"
|
493
|
+
version = "1.0.1"
|
494
|
+
source = { registry = "https://pypi.org/simple" }
|
495
|
+
sdist = { url = "https://files.pythonhosted.org/packages/bc/57/e84d88dfe0aec03b7a2d4327012c1627ab5f03652216c63d49846d7a6c58/python-dotenv-1.0.1.tar.gz", hash = "sha256:e324ee90a023d808f1959c46bcbc04446a10ced277783dc6ee09987c37ec10ca", size = 39115 }
|
496
|
+
wheels = [
|
497
|
+
{ url = "https://files.pythonhosted.org/packages/6a/3e/b68c118422ec867fa7ab88444e1274aa40681c606d59ac27de5a5588f082/python_dotenv-1.0.1-py3-none-any.whl", hash = "sha256:f7b63ef50f1b690dddf550d03497b66d609393b40b564ed0d674909a68ebf16a", size = 19863 },
|
498
|
+
]
|
499
|
+
|
483
500
|
[[package]]
|
484
501
|
name = "readabilipy"
|
485
502
|
version = "0.2.0"
|
@@ -647,14 +664,14 @@ wheels = [
|
|
647
664
|
|
648
665
|
[[package]]
|
649
666
|
name = "starlette"
|
650
|
-
version = "0.41.
|
667
|
+
version = "0.41.2"
|
651
668
|
source = { registry = "https://pypi.org/simple" }
|
652
669
|
dependencies = [
|
653
670
|
{ name = "anyio" },
|
654
671
|
]
|
655
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
672
|
+
sdist = { url = "https://files.pythonhosted.org/packages/3e/da/1fb4bdb72ae12b834becd7e1e7e47001d32f91ec0ce8d7bc1b618d9f0bd9/starlette-0.41.2.tar.gz", hash = "sha256:9834fd799d1a87fd346deb76158668cfa0b0d56f85caefe8268e2d97c3468b62", size = 2573867 }
|
656
673
|
wheels = [
|
657
|
-
{ url = "https://files.pythonhosted.org/packages/
|
674
|
+
{ url = "https://files.pythonhosted.org/packages/54/43/f185bfd0ca1d213beb4293bed51d92254df23d8ceaf6c0e17146d508a776/starlette-0.41.2-py3-none-any.whl", hash = "sha256:fbc189474b4731cf30fcef52f18a8d070e3f3b46c6a04c97579e85e6ffca942d", size = 73259 },
|
658
675
|
]
|
659
676
|
|
660
677
|
[[package]]
|
@@ -677,16 +694,16 @@ wheels = [
|
|
677
694
|
|
678
695
|
[[package]]
|
679
696
|
name = "uvicorn"
|
680
|
-
version = "0.32.
|
697
|
+
version = "0.32.0"
|
681
698
|
source = { registry = "https://pypi.org/simple" }
|
682
699
|
dependencies = [
|
683
700
|
{ name = "click" },
|
684
701
|
{ name = "h11" },
|
685
702
|
{ name = "typing-extensions", marker = "python_full_version < '3.11'" },
|
686
703
|
]
|
687
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
704
|
+
sdist = { url = "https://files.pythonhosted.org/packages/e0/fc/1d785078eefd6945f3e5bab5c076e4230698046231eb0f3747bc5c8fa992/uvicorn-0.32.0.tar.gz", hash = "sha256:f78b36b143c16f54ccdb8190d0a26b5f1901fe5a3c777e1ab29f26391af8551e", size = 77564 }
|
688
705
|
wheels = [
|
689
|
-
{ url = "https://files.pythonhosted.org/packages/
|
706
|
+
{ url = "https://files.pythonhosted.org/packages/eb/14/78bd0e95dd2444b6caacbca2b730671d4295ccb628ef58b81bee903629df/uvicorn-0.32.0-py3-none-any.whl", hash = "sha256:60b8f3a5ac027dcd31448f411ced12b5ef452c646f76f02f8cc3f25d8d26fd82", size = 63723 },
|
690
707
|
]
|
691
708
|
|
692
709
|
[[package]]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|