gitcode-api 1.2.17__py3-none-any.whl → 1.2.19__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.
- gitcode_api/__init__.py +27 -6
- gitcode_api/_base_client.py +15 -5
- gitcode_api/constants.py +18 -1
- gitcode_api/py.typed +0 -1
- gitcode_api/resources/_shared.py +9 -12
- gitcode_api/resources/collaboration.py +9 -2
- gitcode_api/version.txt +1 -1
- {gitcode_api-1.2.17.dist-info → gitcode_api-1.2.19.dist-info}/METADATA +9 -9
- {gitcode_api-1.2.17.dist-info → gitcode_api-1.2.19.dist-info}/RECORD +13 -13
- {gitcode_api-1.2.17.dist-info → gitcode_api-1.2.19.dist-info}/WHEEL +0 -0
- {gitcode_api-1.2.17.dist-info → gitcode_api-1.2.19.dist-info}/entry_points.txt +0 -0
- {gitcode_api-1.2.17.dist-info → gitcode_api-1.2.19.dist-info}/licenses/LICENSE +0 -0
- {gitcode_api-1.2.17.dist-info → gitcode_api-1.2.19.dist-info}/top_level.txt +0 -0
gitcode_api/__init__.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""Public package exports for the GitCode SDK."""
|
|
2
2
|
|
|
3
3
|
import re
|
|
4
|
-
from importlib.metadata import metadata
|
|
4
|
+
from importlib.metadata import PackageNotFoundError, metadata, version
|
|
5
5
|
from typing import cast
|
|
6
6
|
|
|
7
7
|
from . import constants
|
|
@@ -14,11 +14,32 @@ from ._exceptions import (
|
|
|
14
14
|
)
|
|
15
15
|
from .utils import as_dict
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
17
|
+
_README_UUIDS = []
|
|
18
|
+
_VERSION_STR = "unknown"
|
|
19
|
+
|
|
20
|
+
try:
|
|
21
|
+
package_meta = metadata("gitcode_api")
|
|
22
|
+
package_desc = cast(str, package_meta.get("Description"))
|
|
23
|
+
_README_UUIDS = re.findall(r"\&uuid=(\w+)", package_desc, flags=re.ASCII)
|
|
24
|
+
_VERSION_STR = version("gitcode_api")
|
|
25
|
+
except PackageNotFoundError:
|
|
26
|
+
from pathlib import Path
|
|
27
|
+
|
|
28
|
+
import tomllib
|
|
29
|
+
|
|
30
|
+
pyproject_toml = Path(__file__).parent.parent / "pyproject.toml"
|
|
31
|
+
if pyproject_toml.exists():
|
|
32
|
+
_VERSION_STR = tomllib.loads(pyproject_toml.read_text(encoding="utf-8")).get("project", {}).get("version", "")
|
|
33
|
+
else:
|
|
34
|
+
version_file = Path(__file__).with_name("version.txt")
|
|
35
|
+
if version_file.exists():
|
|
36
|
+
_VERSION_STR = version_file.read_text(encoding="utf-8").strip()
|
|
37
|
+
read_me_file = pyproject_toml.with_name("README.md")
|
|
38
|
+
if read_me_file.exists():
|
|
39
|
+
_README_UUIDS = re.findall(r"\&uuid=(\w+)", read_me_file.read_text(encoding="utf-8").strip(), flags=re.ASCII)
|
|
40
|
+
|
|
41
|
+
__build_hash__ = _README_UUIDS[0] if _README_UUIDS else "unknown"
|
|
42
|
+
__version__ = _VERSION_STR.strip()
|
|
22
43
|
|
|
23
44
|
__all__ = [
|
|
24
45
|
"constants",
|
gitcode_api/_base_client.py
CHANGED
|
@@ -20,6 +20,11 @@ def _drop_none_values(mapping: Dict[str, Any]) -> Dict[str, Any]:
|
|
|
20
20
|
return {key: value for key, value in mapping.items() if value is not None}
|
|
21
21
|
|
|
22
22
|
|
|
23
|
+
def _default_decrypt(value: Any) -> str:
|
|
24
|
+
"""Dummy decryption function, basically a no-op."""
|
|
25
|
+
return value
|
|
26
|
+
|
|
27
|
+
|
|
23
28
|
class BaseGitCodeClient:
|
|
24
29
|
"""Base configuration shared by synchronous and asynchronous clients.
|
|
25
30
|
|
|
@@ -42,19 +47,24 @@ class BaseGitCodeClient:
|
|
|
42
47
|
decrypt: Optional[Callable] = None,
|
|
43
48
|
) -> None:
|
|
44
49
|
"""Store client configuration and resolve authentication."""
|
|
45
|
-
self.
|
|
50
|
+
self.decrypt = decrypt or _default_decrypt
|
|
51
|
+
self.api_key = self._resolve_api_key(api_key)
|
|
46
52
|
self.owner = owner
|
|
47
53
|
self.repo = repo
|
|
48
54
|
self.base_url = base_url.rstrip("/")
|
|
49
55
|
self.timeout = timeout if timeout is not None else DEFAULT_TIMEOUT
|
|
50
56
|
|
|
51
|
-
def _resolve_api_key(self, api_key: Optional[str]
|
|
57
|
+
def _resolve_api_key(self, api_key: Optional[str]) -> str:
|
|
52
58
|
"""Resolve the access token from an argument or environment variable."""
|
|
53
59
|
token = api_key or os.getenv(DEFAULT_TOKEN_ENV)
|
|
54
|
-
if callable(decrypt):
|
|
55
|
-
token = decrypt(token)
|
|
56
60
|
if not token:
|
|
57
61
|
raise GitCodeConfigurationError("No API key provided. Pass api_key=... or set GITCODE_ACCESS_TOKEN.")
|
|
62
|
+
try:
|
|
63
|
+
token_decrypt = self.decrypt(str(token))
|
|
64
|
+
if not isinstance(token_decrypt, str):
|
|
65
|
+
raise TypeError(f"Decrypted token has type={type(token_decrypt)} instead of str: {token_decrypt}")
|
|
66
|
+
except Exception as e:
|
|
67
|
+
raise GitCodeConfigurationError("Invalid decrypt function, check its correctness.") from e
|
|
58
68
|
return str(token)
|
|
59
69
|
|
|
60
70
|
def _resolve_repo_context(
|
|
@@ -75,7 +85,7 @@ class BaseGitCodeClient:
|
|
|
75
85
|
"""Build request headers for authenticated JSON API calls."""
|
|
76
86
|
headers = {
|
|
77
87
|
"Accept": "application/json",
|
|
78
|
-
"Authorization": f"Bearer {self.api_key}",
|
|
88
|
+
"Authorization": f"Bearer {self.decrypt(self.api_key)}",
|
|
79
89
|
}
|
|
80
90
|
if extra_headers:
|
|
81
91
|
headers.update(extra_headers)
|
gitcode_api/constants.py
CHANGED
|
@@ -1,8 +1,25 @@
|
|
|
1
1
|
"""Shared constant values for the GitCode SDK."""
|
|
2
2
|
|
|
3
|
+
import re
|
|
4
|
+
|
|
3
5
|
DEFAULT_BASE_URL = "https://api.gitcode.com/api/v5"
|
|
4
6
|
DEFAULT_TIMEOUT = 30.0
|
|
5
7
|
DEFAULT_TOKEN_ENV = "GITCODE_ACCESS_TOKEN"
|
|
6
8
|
DEFAULT_CA_ENV = "GITCODE_CA_BUNDLE"
|
|
9
|
+
GITCODE_ISSUE_TEMPLATE_PATH_RE: re.Pattern[str] = re.compile(
|
|
10
|
+
r"\.git(code|hub)/ISSUE_TEMPLATE.*\.(md|markdown|ya?ml)$", re.IGNORECASE
|
|
11
|
+
)
|
|
12
|
+
GITCODE_PULL_REQUEST_TEMPLATE_PATH_RE: re.Pattern[str] = re.compile(
|
|
13
|
+
r"\.git(code|hub)/PULL_REQUEST_TEMPLATE.*\.(md|markdown|ya?ml)$", re.IGNORECASE
|
|
14
|
+
)
|
|
15
|
+
GITCODE_TEMPLATE_REPO = ".gitcode"
|
|
7
16
|
|
|
8
|
-
__all__ = [
|
|
17
|
+
__all__ = [
|
|
18
|
+
"DEFAULT_BASE_URL",
|
|
19
|
+
"DEFAULT_TIMEOUT",
|
|
20
|
+
"DEFAULT_TOKEN_ENV",
|
|
21
|
+
"DEFAULT_CA_ENV",
|
|
22
|
+
"GITCODE_ISSUE_TEMPLATE_PATH_RE",
|
|
23
|
+
"GITCODE_PULL_REQUEST_TEMPLATE_PATH_RE",
|
|
24
|
+
"GITCODE_TEMPLATE_REPO",
|
|
25
|
+
]
|
gitcode_api/py.typed
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
partial
|
gitcode_api/resources/_shared.py
CHANGED
|
@@ -1,19 +1,12 @@
|
|
|
1
1
|
"""Shared resource base classes for the GitCode SDK."""
|
|
2
2
|
|
|
3
|
-
import re
|
|
4
3
|
from typing import Any, Dict, List, Optional, Pattern, Tuple, Union
|
|
5
4
|
|
|
6
5
|
from .._base_client import AsyncAPIClient, SyncAPIClient
|
|
7
6
|
from .._base_resource import BaseResource
|
|
8
7
|
from .._exceptions import GitCodeHTTPStatusError
|
|
9
8
|
from .._models import APIObject, ModelT, as_model, as_model_list
|
|
10
|
-
|
|
11
|
-
GITCODE_ISSUE_TEMPLATE_PATH_RE: Pattern[str] = re.compile(
|
|
12
|
-
r"\.gitcode/ISSUE_TEMPLATE.*\.(md|markdown|ya?ml)$", re.IGNORECASE
|
|
13
|
-
)
|
|
14
|
-
GITCODE_PULL_REQUEST_TEMPLATE_PATH_RE: Pattern[str] = re.compile(
|
|
15
|
-
r"\.gitcode/PULL_REQUEST_TEMPLATE.*\.(md|markdown|ya?ml)$", re.IGNORECASE
|
|
16
|
-
)
|
|
9
|
+
from ..constants import GITCODE_TEMPLATE_REPO
|
|
17
10
|
|
|
18
11
|
|
|
19
12
|
def _parse_parent_owner_repo(repo_obj: Any) -> Optional[Tuple[str, str]]:
|
|
@@ -50,7 +43,7 @@ def _resolution_sources_sync(client: SyncAPIClient, owner: str, repo: str) -> Li
|
|
|
50
43
|
sources.append(pair)
|
|
51
44
|
|
|
52
45
|
add((owner, repo))
|
|
53
|
-
add((owner,
|
|
46
|
+
add((owner, GITCODE_TEMPLATE_REPO))
|
|
54
47
|
|
|
55
48
|
max_candidates = 64
|
|
56
49
|
index = 0
|
|
@@ -68,7 +61,7 @@ def _resolution_sources_sync(client: SyncAPIClient, owner: str, repo: str) -> Li
|
|
|
68
61
|
continue
|
|
69
62
|
po, pr = parsed
|
|
70
63
|
add((po, pr))
|
|
71
|
-
add((po,
|
|
64
|
+
add((po, GITCODE_TEMPLATE_REPO))
|
|
72
65
|
|
|
73
66
|
return sources
|
|
74
67
|
|
|
@@ -86,7 +79,7 @@ async def _resolution_sources_async(client: AsyncAPIClient, owner: str, repo: st
|
|
|
86
79
|
sources.append(pair)
|
|
87
80
|
|
|
88
81
|
add((owner, repo))
|
|
89
|
-
add((owner,
|
|
82
|
+
add((owner, GITCODE_TEMPLATE_REPO))
|
|
90
83
|
|
|
91
84
|
max_candidates = 64
|
|
92
85
|
index = 0
|
|
@@ -104,7 +97,7 @@ async def _resolution_sources_async(client: AsyncAPIClient, owner: str, repo: st
|
|
|
104
97
|
continue
|
|
105
98
|
po, pr = parsed
|
|
106
99
|
add((po, pr))
|
|
107
|
-
add((po,
|
|
100
|
+
add((po, GITCODE_TEMPLATE_REPO))
|
|
108
101
|
|
|
109
102
|
return sources
|
|
110
103
|
|
|
@@ -210,6 +203,8 @@ def list_gitcode_template_rows_sync(
|
|
|
210
203
|
acc: List[Tuple[str, str, str, str]] = []
|
|
211
204
|
try:
|
|
212
205
|
_walk_dot_gitcode_contents_sync(client, so, sr, ".gitcode", acc)
|
|
206
|
+
if sr != GITCODE_TEMPLATE_REPO:
|
|
207
|
+
_walk_dot_gitcode_contents_sync(client, so, sr, ".github", acc)
|
|
213
208
|
except GitCodeHTTPStatusError:
|
|
214
209
|
continue
|
|
215
210
|
rows = [(t_o, t_r, p, s) for t_o, t_r, p, s in acc if path_pattern.match(p)]
|
|
@@ -228,6 +223,8 @@ async def list_gitcode_template_rows_async(
|
|
|
228
223
|
acc: List[Tuple[str, str, str, str]] = []
|
|
229
224
|
try:
|
|
230
225
|
await _walk_dot_gitcode_contents_async(client, so, sr, ".gitcode", acc)
|
|
226
|
+
if sr != GITCODE_TEMPLATE_REPO:
|
|
227
|
+
await _walk_dot_gitcode_contents_async(client, so, sr, ".github", acc)
|
|
231
228
|
except GitCodeHTTPStatusError:
|
|
232
229
|
continue
|
|
233
230
|
rows = [(t_o, t_r, p, s) for t_o, t_r, p, s in acc if path_pattern.match(p)]
|
|
@@ -25,9 +25,8 @@ from .._models import (
|
|
|
25
25
|
UserSummary,
|
|
26
26
|
as_model,
|
|
27
27
|
)
|
|
28
|
+
from ..constants import GITCODE_ISSUE_TEMPLATE_PATH_RE, GITCODE_PULL_REQUEST_TEMPLATE_PATH_RE
|
|
28
29
|
from ._shared import (
|
|
29
|
-
GITCODE_ISSUE_TEMPLATE_PATH_RE,
|
|
30
|
-
GITCODE_PULL_REQUEST_TEMPLATE_PATH_RE,
|
|
31
30
|
AsyncResource,
|
|
32
31
|
SyncResource,
|
|
33
32
|
get_gitcode_template_body_async,
|
|
@@ -420,6 +419,8 @@ class IssuesResource(SyncResource):
|
|
|
420
419
|
are appended, deduplicated, and visited in order). The first source with matching
|
|
421
420
|
templates wins.
|
|
422
421
|
|
|
422
|
+
Version 1.2.19: Now also supporting GitHub-mirrored repos with a ``.github/`` folder.
|
|
423
|
+
|
|
423
424
|
:param owner: Repository owner path. Uses the client default when omitted.
|
|
424
425
|
:param repo: Repository name. Uses the client default when omitted.
|
|
425
426
|
:returns: Template metadata entries (paths and SHAs); empty when none match.
|
|
@@ -1067,6 +1068,8 @@ class PullsResource(SyncResource):
|
|
|
1067
1068
|
are appended, deduplicated, and visited in order). The first source with matching
|
|
1068
1069
|
templates wins.
|
|
1069
1070
|
|
|
1071
|
+
Version 1.2.19: Now also supporting GitHub-mirrored repos with a ``.github/`` folder.
|
|
1072
|
+
|
|
1070
1073
|
:param owner: Repository owner path. Uses the client default when omitted.
|
|
1071
1074
|
:param repo: Repository path. Uses the client default when omitted.
|
|
1072
1075
|
:returns: Template metadata entries (paths and SHAs); empty when none match.
|
|
@@ -1734,6 +1737,8 @@ class AsyncIssuesResource(AsyncResource):
|
|
|
1734
1737
|
are appended, deduplicated, and visited in order). The first source with matching
|
|
1735
1738
|
templates wins.
|
|
1736
1739
|
|
|
1740
|
+
Version 1.2.19: Now also supporting GitHub-mirrored repos with a ``.github/`` folder.
|
|
1741
|
+
|
|
1737
1742
|
:param owner: Repository owner path. Uses the client default when omitted.
|
|
1738
1743
|
:param repo: Repository name. Uses the client default when omitted.
|
|
1739
1744
|
:returns: Template metadata entries (paths and SHAs); empty when none match.
|
|
@@ -2328,6 +2333,8 @@ class AsyncPullsResource(AsyncResource):
|
|
|
2328
2333
|
are appended, deduplicated, and visited in order). The first source with matching
|
|
2329
2334
|
templates wins.
|
|
2330
2335
|
|
|
2336
|
+
Version 1.2.19: Now also supporting GitHub-mirrored repos with a ``.github/`` folder.
|
|
2337
|
+
|
|
2331
2338
|
:param owner: Repository owner path. Uses the client default when omitted.
|
|
2332
2339
|
:param repo: Repository path. Uses the client default when omitted.
|
|
2333
2340
|
:returns: Template metadata entries (paths and SHAs); empty when none match.
|
gitcode_api/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.2.
|
|
1
|
+
1.2.19
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gitcode-api
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.19
|
|
4
4
|
Summary: Easy to use Python SDK for the GitCode REST API. Providing builtin CLI tool, and optional LLM integration (MCP, OpenAI tool, and openJiuwen tool) for agents. Community-maintained.
|
|
5
5
|
Author-email: Hugo Huang <hugo@hugohuang.com>
|
|
6
6
|
License-Expression: MIT
|
|
7
|
-
Project-URL:
|
|
8
|
-
Project-URL:
|
|
9
|
-
Project-URL:
|
|
10
|
-
Project-URL:
|
|
11
|
-
Project-URL:
|
|
12
|
-
Project-URL:
|
|
13
|
-
Project-URL:
|
|
7
|
+
Project-URL: Changelog, https://gitcode-api.readthedocs.io/en/latest/changelog.html
|
|
8
|
+
Project-URL: Issues, https://github.com/Trenza1ore/GitCode-API/issues
|
|
9
|
+
Project-URL: Documentation, https://gitcode-api.readthedocs.io
|
|
10
|
+
Project-URL: Gitcode, https://gitcode.com/SushiNinja/GitCode-API
|
|
11
|
+
Project-URL: Github, https://github.com/Trenza1ore/GitCode-API
|
|
12
|
+
Project-URL: Homepage, https://hugohuang.com/gitcode-api
|
|
13
|
+
Project-URL: Author, https://hugohuang.com
|
|
14
14
|
Keywords: gitcode,git,devops,api,sdk,python,httpx,client,mcp,agent,fastmcp,llm,openjiuwen,mcp client,mcp server,model context protocol
|
|
15
15
|
Classifier: Development Status :: 4 - Beta
|
|
16
16
|
Classifier: Programming Language :: Python
|
|
@@ -37,7 +37,7 @@ Dynamic: license-file
|
|
|
37
37
|
|
|
38
38
|
# GitCode-API
|
|
39
39
|
|
|
40
|
-
[](https://pypi.org/project/gitcode-api) [](https://pepy.tech/projects/gitcode-api) [](https://www.codefactor.io/repository/github/trenza1ore/gitcode-api)
|
|
41
41
|
[](https://cursor.com/en/install-mcp?name=GitCode%20API&config=eyJjb21tYW5kIjoidXZ4IiwiYXJncyI6WyItLWZyb20iLCJnaXRjb2RlLWFwaVttY3BdIiwiZ2l0Y29kZS1hcGkiLCJzZXJ2ZSJdLCJlbnYiOnsiR0lUQ09ERV9BQ0NFU1NfVE9LRU4iOiIke2lucHV0OmdpdGNvZGVfYWNjZXNzX3Rva2VufSJ9LCJpbnB1dHMiOlt7ImlkIjoiZ2l0Y29kZV9hY2Nlc3NfdG9rZW4iLCJ0eXBlIjoicHJvbXB0U3RyaW5nIiwiZGVzY3JpcHRpb24iOiJFbnRlciBHSVRDT0RFX0FDQ0VTU19UT0tFTiIsInBhc3N3b3JkIjp0cnVlfV19) [](https://vscode.dev/redirect/mcp/install?name=GitCode%20API&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22--from%22%2C%22gitcode-api%5Bmcp%5D%22%2C%22gitcode-api%22%2C%22serve%22%5D%2C%22env%22%3A%7B%22GITCODE_ACCESS_TOKEN%22%3A%22%24%7Binput%3Agitcode_access_token%7D%22%7D%2C%22inputs%22%3A%5B%7B%22id%22%3A%22gitcode_access_token%22%2C%22type%22%3A%22promptString%22%2C%22description%22%3A%22Enter%20GITCODE_ACCESS_TOKEN%22%2C%22password%22%3Atrue%7D%5D%7D)
|
|
42
42
|
[](https://github.com/Trenza1ore/GitCode-API) [](https://gitcode.com/SushiNinja/GitCode-API)
|
|
43
43
|
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
gitcode_api/__init__.py,sha256=
|
|
1
|
+
gitcode_api/__init__.py,sha256=94gg5E1bAWozIR6PBYIPdZMfj-VyBFJp_rQQda2Qagk,1672
|
|
2
2
|
gitcode_api/__main__.py,sha256=Yd8P4MSNcWFqUTKnUaNibbWX4Vd-MVVNmhPFaohzqcA,137
|
|
3
|
-
gitcode_api/_base_client.py,sha256=
|
|
3
|
+
gitcode_api/_base_client.py,sha256=qG-d6wlMwjvbK4bi4m4dwHNZR9wP2tSS9qiWFTIIsFA,13960
|
|
4
4
|
gitcode_api/_base_resource.py,sha256=mlKe1b_1AKcqxhptaCpP-AOjKkLNzCbYG-Pkp1HYWrA,2238
|
|
5
5
|
gitcode_api/_cli_banner.py,sha256=S6i8dnzCXrxytrboxNh_gz-x95u6w9E-Yz6IkTz2PJk,1576
|
|
6
6
|
gitcode_api/_client.py,sha256=bmZxBHdfshM5Kv_EurHUVu8rsEj0k3Up3ATSIPaFrvc,8258
|
|
7
7
|
gitcode_api/_exceptions.py,sha256=T5N8gBGmPSktDkLP5P_hxbzOHw3W378TzxN1xja40pA,1140
|
|
8
8
|
gitcode_api/_models.py,sha256=ip0xgdWao8Z3ATfSaPn3KzG81OXd25RVB1ansOaJaUM,110586
|
|
9
9
|
gitcode_api/cli.py,sha256=7ZrpWIh5zZdftMhbMjldiuvijig8qKLFiQbof93Cy6k,18792
|
|
10
|
-
gitcode_api/constants.py,sha256=
|
|
11
|
-
gitcode_api/py.typed,sha256=
|
|
10
|
+
gitcode_api/constants.py,sha256=uzcI7dVq4Qx_toYtnIphUh1IGepv9NuOdJ4DCswiYgo,769
|
|
11
|
+
gitcode_api/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
12
|
gitcode_api/run_mcp.py,sha256=3_JOrjg9_yL-0M-H-F8mPgxdVKh7K2ggipu7UHeNCg0,147
|
|
13
13
|
gitcode_api/utils.py,sha256=51QmPTQPeNsPSGf2IzhwmiEO1H2GkJrp2A7vkzhOOag,1351
|
|
14
|
-
gitcode_api/version.txt,sha256=
|
|
14
|
+
gitcode_api/version.txt,sha256=Kt-wv6L2q7wzBPEfl6iGyfGBmEs0ik7CR57DsILDjYU,7
|
|
15
15
|
gitcode_api/llm/__init__.py,sha256=rU75ZlJvTWNVxBLc3QzdfWmSjqVc9z6hfQ8z6jVVKOk,1693
|
|
16
16
|
gitcode_api/llm/_tool.py,sha256=b65iUiHo1H29uA6mFM3WlD0zZlISsENx1tpEqlkiUoA,16239
|
|
17
17
|
gitcode_api/llm/jiuwen.py,sha256=qca2y4544xoRYFOCMbkjiUZZLpJGMcBkK4w5bqs60-4,4276
|
|
18
18
|
gitcode_api/llm/mcp.py,sha256=eeAuEETZ4THw31wbcnQaTlZQJ-9ZolvsejQY630OqHs,5702
|
|
19
19
|
gitcode_api/llm/openai.py,sha256=FSPA0Jv-k4n1Ud92TDfP1TWRlW4FB7smaLwY331nagk,3257
|
|
20
20
|
gitcode_api/resources/__init__.py,sha256=nsCKW0bFDZ5ombJZxLThmO82sOuF7o4OKUMRkAmwbwk,1725
|
|
21
|
-
gitcode_api/resources/_shared.py,sha256=
|
|
21
|
+
gitcode_api/resources/_shared.py,sha256=My0DuLyd8q_SPByGcbmizUdN5r3yMbBJ1rUhsXF4LZw,15458
|
|
22
22
|
gitcode_api/resources/account.py,sha256=mnc2p7wI-nBnHFNdWPNiHfmZpT6d3RDQC777gewtm4M,38801
|
|
23
|
-
gitcode_api/resources/collaboration.py,sha256=
|
|
23
|
+
gitcode_api/resources/collaboration.py,sha256=je3ykQOTS_n9bSUr0gDYRkXVxhNtf1NJXWPWcuv5nSs,112783
|
|
24
24
|
gitcode_api/resources/misc.py,sha256=w7bq8rmgKr2ScBKeWZ3EZJmAdylDdPtSPrhi3AQre7w,34747
|
|
25
25
|
gitcode_api/resources/repositories.py,sha256=EAK2znZhEsgVUu-NDEQslSEEYJzvb-kHuh4mW57y6sc,78178
|
|
26
|
-
gitcode_api-1.2.
|
|
27
|
-
gitcode_api-1.2.
|
|
28
|
-
gitcode_api-1.2.
|
|
29
|
-
gitcode_api-1.2.
|
|
30
|
-
gitcode_api-1.2.
|
|
31
|
-
gitcode_api-1.2.
|
|
26
|
+
gitcode_api-1.2.19.dist-info/licenses/LICENSE,sha256=gOACXuWhMu6PJKVLr9RQbxX3HULnZIGNXCaMFJIXhoA,1067
|
|
27
|
+
gitcode_api-1.2.19.dist-info/METADATA,sha256=lkda5yPPW5Nz2RTNiRmtIgptKm7RG-cdy8EVnWPQfk0,23592
|
|
28
|
+
gitcode_api-1.2.19.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
29
|
+
gitcode_api-1.2.19.dist-info/entry_points.txt,sha256=dIPylJcgohIE2RRIlt3In2WzcwDK8TOdkL_ReKuij4o,53
|
|
30
|
+
gitcode_api-1.2.19.dist-info/top_level.txt,sha256=gIlg0ptyOUHJT64ajOjWIhRPYgIQnMIvnhhnesw9fxU,12
|
|
31
|
+
gitcode_api-1.2.19.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|