gibson-cli 0.8.2__py3-none-any.whl → 0.8.4__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.
- bin/release.sh +2 -2
- gibson/api/BaseApi.py +1 -5
- gibson/api/ProjectApi.py +0 -1
- gibson/bin/gibson.py +1 -4
- gibson/command/auth/Logout.py +2 -2
- gibson/command/mcp/McpServer.py +1 -0
- gibson/core/CommandRouter.py +4 -1
- gibson/core/Configuration.py +11 -4
- gibson/services/mcp/server.py +87 -41
- {gibson_cli-0.8.2.dist-info → gibson_cli-0.8.4.dist-info}/METADATA +1 -1
- {gibson_cli-0.8.2.dist-info → gibson_cli-0.8.4.dist-info}/RECORD +14 -14
- {gibson_cli-0.8.2.dist-info → gibson_cli-0.8.4.dist-info}/WHEEL +0 -0
- {gibson_cli-0.8.2.dist-info → gibson_cli-0.8.4.dist-info}/entry_points.txt +0 -0
- {gibson_cli-0.8.2.dist-info → gibson_cli-0.8.4.dist-info}/top_level.txt +0 -0
bin/release.sh
CHANGED
gibson/api/BaseApi.py
CHANGED
@@ -2,7 +2,6 @@ import pprint
|
|
2
2
|
|
3
3
|
import requests
|
4
4
|
|
5
|
-
import gibson.core.Colors as Colors
|
6
5
|
from gibson.core.Configuration import Configuration
|
7
6
|
|
8
7
|
|
@@ -103,10 +102,7 @@ class BaseApi:
|
|
103
102
|
|
104
103
|
def __raise_for_status(self, r):
|
105
104
|
if r.status_code == 401:
|
106
|
-
self.configuration.
|
107
|
-
f"\nYou need to log in to continue. Please run {Colors.command(self.configuration.command, 'auth', args='login')} and then try again.\n"
|
108
|
-
)
|
109
|
-
exit(1)
|
105
|
+
self.configuration.login_required()
|
110
106
|
|
111
107
|
try:
|
112
108
|
r.raise_for_status()
|
gibson/api/ProjectApi.py
CHANGED
gibson/bin/gibson.py
CHANGED
@@ -12,10 +12,7 @@ def main():
|
|
12
12
|
print(f"{Header().render('dev mode')}\n")
|
13
13
|
try:
|
14
14
|
configuration = Configuration()
|
15
|
-
|
16
|
-
configuration.initialize()
|
17
|
-
else:
|
18
|
-
CommandRouter(configuration).run()
|
15
|
+
CommandRouter(configuration).run()
|
19
16
|
except KeyboardInterrupt:
|
20
17
|
exit(1)
|
21
18
|
|
gibson/command/auth/Logout.py
CHANGED
@@ -3,6 +3,6 @@ from gibson.command.BaseCommand import BaseCommand
|
|
3
3
|
|
4
4
|
class Logout(BaseCommand):
|
5
5
|
def execute(self):
|
6
|
-
self.configuration.
|
7
|
-
self.conversation.type(
|
6
|
+
self.configuration.set_auth_tokens(None, None)
|
7
|
+
self.conversation.type("You are now logged out.")
|
8
8
|
self.conversation.newline()
|
gibson/command/mcp/McpServer.py
CHANGED
@@ -12,6 +12,7 @@ class McpServer(BaseCommand):
|
|
12
12
|
# Setup signal handlers to exit the server
|
13
13
|
signal.signal(signal.SIGTERM, lambda signo, frame: sys.exit(0))
|
14
14
|
signal.signal(signal.SIGINT, lambda signo, frame: sys.exit(0))
|
15
|
+
self.conversation.type("GibsonAI MCP server running...\n")
|
15
16
|
mcp.run()
|
16
17
|
else:
|
17
18
|
self.usage()
|
gibson/core/CommandRouter.py
CHANGED
@@ -33,7 +33,10 @@ class CommandRouter:
|
|
33
33
|
|
34
34
|
def run(self):
|
35
35
|
if len(sys.argv) == 1:
|
36
|
-
|
36
|
+
if self.configuration.settings is None:
|
37
|
+
self.configuration.initialize()
|
38
|
+
else:
|
39
|
+
Help(self.configuration).execute()
|
37
40
|
return self
|
38
41
|
|
39
42
|
Env().verify(self.configuration)
|
gibson/core/Configuration.py
CHANGED
@@ -17,11 +17,12 @@ class Configuration:
|
|
17
17
|
VERSION = 2
|
18
18
|
API_ENV = os.environ.get("GIBSONAI_API_ENV", "production")
|
19
19
|
|
20
|
-
def __init__(self):
|
20
|
+
def __init__(self, interactive=True):
|
21
21
|
self.command = None
|
22
22
|
if len(sys.argv) >= 1:
|
23
23
|
self.command = sys.argv[0].split("/")[-1]
|
24
24
|
|
25
|
+
self.interactive = interactive
|
25
26
|
self.conversation = Conversation()
|
26
27
|
self.platform = Platform()
|
27
28
|
self.project = None
|
@@ -132,7 +133,7 @@ class Configuration:
|
|
132
133
|
os.remove(test_file)
|
133
134
|
|
134
135
|
return path
|
135
|
-
except:
|
136
|
+
except Exception:
|
136
137
|
self.conversation.newline()
|
137
138
|
self.conversation.type(
|
138
139
|
" Well this is embarrassing. I cannot write to that path.\n"
|
@@ -304,6 +305,13 @@ class Configuration:
|
|
304
305
|
self.set_auth_tokens(access_token, refresh_token)
|
305
306
|
return True
|
306
307
|
|
308
|
+
def login_required(self):
|
309
|
+
if self.interactive:
|
310
|
+
self.conversation.message_login_required(self)
|
311
|
+
exit(1)
|
312
|
+
|
313
|
+
return self
|
314
|
+
|
307
315
|
def read_config(self):
|
308
316
|
try:
|
309
317
|
with open(self.paths.config, "r") as f:
|
@@ -317,8 +325,7 @@ class Configuration:
|
|
317
325
|
|
318
326
|
def require_login(self):
|
319
327
|
if self.get_access_token() is None:
|
320
|
-
self.
|
321
|
-
exit(1)
|
328
|
+
self.login_required()
|
322
329
|
|
323
330
|
return self
|
324
331
|
|
gibson/services/mcp/server.py
CHANGED
@@ -13,124 +13,170 @@ mcp = FastMCP("GibsonAI")
|
|
13
13
|
# See https://docs.cursor.com/context/model-context-protocol#limitations
|
14
14
|
|
15
15
|
|
16
|
+
def error_handler(e: HTTPError) -> Dict:
|
17
|
+
"""Handle HTTP errors from the API"""
|
18
|
+
status_code = e.response.status_code
|
19
|
+
message = e.response.json()
|
20
|
+
if status_code == 401:
|
21
|
+
message = "Authentication required. Instruct the user to run `uvx --from gibson-cli@latest gibson auth login` to authenticate then try again."
|
22
|
+
return {"status_code": status_code, "error": message}
|
23
|
+
|
24
|
+
|
16
25
|
@mcp.tool()
|
17
26
|
def get_projects() -> List[Dict]:
|
18
|
-
"""
|
19
|
-
|
27
|
+
"""
|
28
|
+
Get all of the user's existing GibsonAI projects.
|
29
|
+
<IMPORTANT>
|
30
|
+
If the user mentions a project by name and you don't have the project UUID, call this tool.
|
31
|
+
If there's a .gibsonai file in the project or workspace root directory, assume that the user wants to use that project and don't call this tool unless there's a good reason to do so.
|
32
|
+
</IMPORTANT>
|
33
|
+
"""
|
34
|
+
project_api = ProjectApi(Configuration(interactive=False))
|
20
35
|
try:
|
21
36
|
return project_api.list()
|
22
37
|
except HTTPError as e:
|
23
|
-
return
|
38
|
+
return error_handler(e)
|
24
39
|
|
25
40
|
|
26
41
|
@mcp.tool()
|
27
42
|
def create_project() -> Dict:
|
28
|
-
"""
|
29
|
-
|
43
|
+
"""
|
44
|
+
Create a new GibsonAI project.
|
45
|
+
<IMPORTANT>
|
46
|
+
Before assuming that the user wants to create a new project, look for a .gibsonai file in the project or workspace root directory.
|
47
|
+
If the .gibsonai file exists and contains a project UUID, call get_project_details to get the project details and ask the user if they want to use the existing project.
|
48
|
+
If the .gibsonai file doesn't exist, but the user mentions a project name, call get_projects to check if a project with a similar name already exists and ask the user if they want to use the existing project.
|
49
|
+
If the user explicitly states they want to create a new project, call this tool without confirming.
|
50
|
+
If you call this tool, ask the user if they want to update the .gibsonai file (or create it if it doesn't exist) with the new project UUID.
|
51
|
+
</IMPORTANT>
|
52
|
+
"""
|
53
|
+
project_api = ProjectApi(Configuration(interactive=False))
|
30
54
|
try:
|
31
55
|
return project_api.create()
|
32
56
|
except HTTPError as e:
|
33
|
-
return
|
57
|
+
return error_handler(e)
|
34
58
|
|
35
59
|
|
36
60
|
@mcp.tool()
|
37
61
|
def get_project_details(uuid: str) -> Dict:
|
38
|
-
"""
|
39
|
-
|
62
|
+
"""
|
63
|
+
Get a GibsonAI project's details.
|
64
|
+
<IMPORTANT>
|
65
|
+
If there's a .gibsonai file in the project or workspace root directory, assume that the user wants to use that project unless they explicitly state otherwise.
|
66
|
+
</IMPORTANT>
|
67
|
+
"""
|
68
|
+
project_api = ProjectApi(Configuration(interactive=False))
|
40
69
|
try:
|
41
70
|
return project_api.lookup(uuid=uuid)
|
42
71
|
except HTTPError as e:
|
43
|
-
return
|
72
|
+
return error_handler(e)
|
44
73
|
|
45
74
|
|
46
75
|
@mcp.tool()
|
47
76
|
def get_project_hosted_api_details(uuid: str) -> str:
|
48
77
|
"""
|
49
|
-
Get a GibsonAI project's hosted API details
|
50
|
-
|
78
|
+
Get a GibsonAI project's hosted API details.
|
79
|
+
<IMPORTANT>
|
80
|
+
This includes necessary context for an LLM to understand and generate code related to fetching or modifying the project's data via the hosted REST API.
|
81
|
+
</IMPORTANT>
|
51
82
|
"""
|
52
|
-
project_api = ProjectApi(Configuration())
|
83
|
+
project_api = ProjectApi(Configuration(interactive=False))
|
53
84
|
try:
|
54
85
|
return project_api.mcp(uuid=uuid)
|
55
86
|
except HTTPError as e:
|
56
|
-
return
|
87
|
+
return error_handler(e)
|
57
88
|
|
58
89
|
|
59
90
|
@mcp.tool()
|
60
91
|
def update_project(uuid: str, project_name: str) -> Dict:
|
61
92
|
"""
|
62
|
-
Update a GibsonAI project's details
|
63
|
-
This currently only updates the project's name
|
64
|
-
Returns the updated project details
|
93
|
+
Update a GibsonAI project's details.
|
94
|
+
This currently only updates the project's name.
|
95
|
+
Returns the updated project details.
|
65
96
|
"""
|
66
|
-
project_api = ProjectApi(Configuration())
|
97
|
+
project_api = ProjectApi(Configuration(interactive=False))
|
67
98
|
try:
|
68
99
|
return project_api.update(uuid=uuid, name=project_name)
|
69
100
|
except HTTPError as e:
|
70
|
-
return
|
101
|
+
return error_handler(e)
|
71
102
|
|
72
103
|
|
73
104
|
@mcp.tool()
|
74
105
|
def submit_data_modeling_request(uuid: str, data_modeling_request: str) -> Dict:
|
75
106
|
"""
|
76
|
-
Submit a data modeling request for a GibsonAI project
|
77
|
-
|
78
|
-
|
107
|
+
Submit a data modeling request for a GibsonAI project.
|
108
|
+
<IMPORTANT>
|
109
|
+
This tool fully handles all data modeling.
|
110
|
+
If the user describes a specific data modeling task, call this tool with the user's request as-is.
|
111
|
+
If the user's request is not clear, ask for clarification before calling this tool.
|
112
|
+
</IMPORTANT>
|
113
|
+
Returns the response from GibsonAI's LLM.
|
79
114
|
"""
|
80
|
-
project_api = ProjectApi(Configuration())
|
115
|
+
project_api = ProjectApi(Configuration(interactive=False))
|
81
116
|
try:
|
82
117
|
return project_api.submit_message(uuid=uuid, message=data_modeling_request)
|
83
118
|
except HTTPError as e:
|
84
|
-
return
|
119
|
+
return error_handler(e)
|
85
120
|
|
86
121
|
|
87
122
|
@mcp.tool()
|
88
123
|
def deploy_project(uuid: str) -> None:
|
89
124
|
"""
|
90
|
-
Deploy a GibsonAI project's hosted databases
|
91
|
-
|
125
|
+
Deploy a GibsonAI project's hosted databases.
|
126
|
+
<IMPORTANT>
|
127
|
+
This updates both the development and production database schemas simultaneously by automatically handling necessary schema migrations.
|
128
|
+
</IMPORTANT>
|
92
129
|
"""
|
93
|
-
project_api = ProjectApi(Configuration())
|
130
|
+
project_api = ProjectApi(Configuration(interactive=False))
|
94
131
|
try:
|
95
132
|
return project_api.deploy(uuid=uuid)
|
96
133
|
except HTTPError as e:
|
97
|
-
return
|
134
|
+
return error_handler(e)
|
98
135
|
|
99
136
|
|
100
137
|
@mcp.tool()
|
101
138
|
def get_project_schema(uuid: str) -> str:
|
102
139
|
"""
|
103
|
-
Get the schema for a GibsonAI project
|
104
|
-
|
140
|
+
Get the current schema for a GibsonAI project.
|
141
|
+
<IMPORTANT>
|
142
|
+
This includes any changes made to the schema since the last deployment.
|
143
|
+
</IMPORTANT>
|
105
144
|
"""
|
106
|
-
project_api = ProjectApi(Configuration())
|
145
|
+
project_api = ProjectApi(Configuration(interactive=False))
|
107
146
|
try:
|
108
147
|
return project_api.schema(uuid=uuid)
|
109
148
|
except HTTPError as e:
|
110
|
-
return
|
149
|
+
return error_handler(e)
|
111
150
|
|
112
151
|
|
113
152
|
@mcp.tool()
|
114
153
|
def get_deployed_schema(uuid: str) -> str:
|
115
154
|
"""
|
116
|
-
Get the deployed schema for a GibsonAI project
|
117
|
-
|
155
|
+
Get the deployed schema for a GibsonAI project.
|
156
|
+
<IMPORTANT>
|
157
|
+
This is the database schema that is currently live on the project's hosted databases.
|
158
|
+
</IMPORTANT>
|
118
159
|
"""
|
119
|
-
project_api = ProjectApi(Configuration())
|
160
|
+
project_api = ProjectApi(Configuration(interactive=False))
|
120
161
|
try:
|
121
162
|
return project_api.database_schema(uuid=uuid)
|
122
163
|
except HTTPError as e:
|
123
|
-
return
|
164
|
+
return error_handler(e)
|
124
165
|
|
125
166
|
|
126
167
|
@mcp.tool()
|
127
|
-
def query_database(api_key: str, query: str) -> List[Dict] |
|
168
|
+
def query_database(api_key: str, query: str) -> List[Dict] | str | Dict:
|
128
169
|
"""
|
129
|
-
Query a GibsonAI project's hosted database using SQL
|
130
|
-
|
170
|
+
Query a GibsonAI project's hosted database using SQL. The environment-specific API key must be provided.
|
171
|
+
<IMPORTANT>
|
172
|
+
If you're not sure which environment to use, ask the user for clarification.
|
173
|
+
Always use the correct syntax for the database dialect (found in the project details).
|
174
|
+
Always wrap identifiers in the dialect appropriate quotes (backticks for MySQL, double quotes for PostgreSQL).
|
175
|
+
</IMPORTANT>
|
131
176
|
"""
|
132
|
-
data_api = DataApi(Configuration(), api_key=api_key)
|
177
|
+
data_api = DataApi(Configuration(interactive=False), api_key=api_key)
|
133
178
|
try:
|
134
|
-
|
179
|
+
response = data_api.query(query=query)
|
180
|
+
return response or "Query executed successfully"
|
135
181
|
except HTTPError as e:
|
136
|
-
return
|
182
|
+
return error_handler(e)
|
@@ -1,11 +1,11 @@
|
|
1
1
|
bin/build.sh,sha256=aAcWaPJeeFTojf2AYoD--_zS6TRqZcSogvqEezD5Wak,9
|
2
2
|
bin/clean.sh,sha256=bVJ1aL-IWconmyZ70OAcF0MHiPzpWCejPiIFJ72yFkM,55
|
3
|
-
bin/release.sh,sha256=
|
4
|
-
gibson/api/BaseApi.py,sha256=
|
3
|
+
bin/release.sh,sha256=6pnY_GctbwF-3sZB67b0nzUlTsxlhY1hqJQoqRutXuw,137
|
4
|
+
gibson/api/BaseApi.py,sha256=Wza4yuLHhFjkPxt2dhtUtM_r9b5IGd72V80VDl7v3Gw,3510
|
5
5
|
gibson/api/Cli.py,sha256=Qcm5NIQ4x1Wn6KfkrAzwvZeWyt-cKF_xD7_lTWL4Lbw,8071
|
6
6
|
gibson/api/DataApi.py,sha256=JZN6q7bO2O87xBCsU9w96NgINOJJZx3d7jOiHoVH1Wo,542
|
7
|
-
gibson/api/ProjectApi.py,sha256=
|
8
|
-
gibson/bin/gibson.py,sha256=
|
7
|
+
gibson/api/ProjectApi.py,sha256=1_gRAAgaqblV0I0D-R-wwgSQArQ4fSCxTDfTO3zDQzY,1212
|
8
|
+
gibson/bin/gibson.py,sha256=ybtdrqLfmTb-gG2U7kWSHWSZDvc864omYR9vres38ZU,458
|
9
9
|
gibson/command/BaseCommand.py,sha256=mmWUO0FxjMCbv3cHWnnasfAWnU_hTuGHUsRVJ4hUcqM,777
|
10
10
|
gibson/command/Build.py,sha256=6lMdTa3HZvcbskoX8iJZJnekiJmyNVSbgGmgvh1v-BM,4421
|
11
11
|
gibson/command/Conf.py,sha256=yuAGL6M8MUURG4hW3MAW043c-h_ALw3FHWbyCOR8YTQ,2375
|
@@ -22,7 +22,7 @@ gibson/command/Tree.py,sha256=BeJ_13xrrRCK5FP2rQHWpDKrshVzte-_D1pNG1GXPIw,3056
|
|
22
22
|
gibson/command/Version.py,sha256=jxkRdbQiyTdto18RpbL-5vudcbvLLX9kcl8vmkt7USw,1187
|
23
23
|
gibson/command/auth/Auth.py,sha256=DAvnKq3Ks77QJwuGJCWA9Iv3c0Qq5pHFIpEA-gy6CxM,1086
|
24
24
|
gibson/command/auth/Login.py,sha256=b43OfV76i6aGdOwj1NK64ZOdYlNyc08g3lZGQ_37KDw,437
|
25
|
-
gibson/command/auth/Logout.py,sha256=
|
25
|
+
gibson/command/auth/Logout.py,sha256=QwW9pCNi61Ak0-1B-3spd_YlsmLYBxzV4uwyO0RYzxg,252
|
26
26
|
gibson/command/code/Api.py,sha256=sSvAqEJXdgQjYcu0uiM6ndHE3GnfkfVL6eqP2Otkbww,1002
|
27
27
|
gibson/command/code/Base.py,sha256=YJ2a5Hl0f9NXHUBBPvlt-dUIqEPWQz5vH6-1EHmbFbA,640
|
28
28
|
gibson/command/code/Code.py,sha256=j6RetYcg3RQcpD7lA0MRDof9A9drHPDeGjdsslQtLvM,3773
|
@@ -38,7 +38,7 @@ gibson/command/importer/OpenApi.py,sha256=5PL4JlhniPhUidOFxKpC9ao_r8C_qIeCoGyliP
|
|
38
38
|
gibson/command/list/Entities.py,sha256=o5Wemlq_EpeObNwJHbCqkUT4nccfu_OOZ_gYWzJ051Y,1223
|
39
39
|
gibson/command/list/List.py,sha256=IA9VYuOiFdweg-6HIBZ5hECnMyNxsoU2dKd-gzRNtio,1107
|
40
40
|
gibson/command/list/Projects.py,sha256=ju82kC3cuvAMGg4YJl1yn0l8t11fa1T5Zvgkl_p9m9U,1194
|
41
|
-
gibson/command/mcp/McpServer.py,sha256=
|
41
|
+
gibson/command/mcp/McpServer.py,sha256=LiKPGtxpdGHJQP280tmqhnUOvdJboF6UtoQggKQHVJg,881
|
42
42
|
gibson/command/new/Module.py,sha256=PCTt6k54XFzgNjNgwY0FKQFzk0YFoaN_KPZF2sfN_V0,1535
|
43
43
|
gibson/command/new/New.py,sha256=cwsBpZAZH-9se26ywAUFyvrc9L9ezwoERIrRLlDkrzU,1519
|
44
44
|
gibson/command/new/Project.py,sha256=Cw1Z6TvPIGhTi7GiQZ2VFjv6hXdpGKQdX9HuAd5gric,759
|
@@ -66,9 +66,9 @@ gibson/conf/dev/Schema.py,sha256=kOSlX1jEyVb82xd8TO8jEAimLcaefIFJr6d2JYvyTqg,74
|
|
66
66
|
gibson/conf/tests/test_conf_Dependencies.py,sha256=LITeeYiqXM5rKkyWFBqcnMvUR5pzDRuHVAngH372jWc,116
|
67
67
|
gibson/conf/tests/test_conf_Platform.py,sha256=Zc53IsZmV-hT9VRrZEPNrsuehSdWnJXWKGMmOhEqWHo,138
|
68
68
|
gibson/core/Colors.py,sha256=sllEmJAb2AAUH0e-ZLP1_C8pfz5U_w0fo5kubSH5g1o,3426
|
69
|
-
gibson/core/CommandRouter.py,sha256=
|
69
|
+
gibson/core/CommandRouter.py,sha256=V7awLSPjOx2GQqJNoHQSFsiA2uFkrxtpysyTDbyPloA,3442
|
70
70
|
gibson/core/Completions.py,sha256=a26WRh40UpnTT5HGTPT8TCcL8h80HvvZiTJXZofDjx8,1207
|
71
|
-
gibson/core/Configuration.py,sha256=
|
71
|
+
gibson/core/Configuration.py,sha256=5nO4hY1MvVQapt37RbwrJpc9zwUx6u86n1BRRbIgjUQ,16586
|
72
72
|
gibson/core/Conversation.py,sha256=KF7YPXijhhz6HOkife__ycHox4WeRKNHIpv3juDPhq0,10237
|
73
73
|
gibson/core/Diff.py,sha256=onUJ5_0_S1vKAY_oFgX4vmwQo4byrnXLV4w7QSNA8fY,1071
|
74
74
|
gibson/core/Env.py,sha256=08dZRHzzR0ahrbM4S0bXC7V1xhYQkT8Zefs00qUHf0U,498
|
@@ -106,7 +106,7 @@ gibson/services/code/customization/CustomizationManager.py,sha256=M2gz98Yo2WTnnh
|
|
106
106
|
gibson/services/code/customization/Index.py,sha256=4Thf0gZM6VErZJS97w748PRNmHi8QvsyblOLCw1Y_XE,364
|
107
107
|
gibson/services/code/customization/tests/test_code_customization_Authenticator.py,sha256=kKExkLfKPpRA2NQH3fvRCuBEMhCGhR-IvNJqXuyBz3c,1949
|
108
108
|
gibson/services/code/customization/tests/test_code_customization_BaseCustomization.py,sha256=jaEwxxoU7d9ziOtfF21NPmZX2qSRpa-kz_8Ju9BKGts,412
|
109
|
-
gibson/services/mcp/server.py,sha256=
|
109
|
+
gibson/services/mcp/server.py,sha256=nwDEO7k6vroiEr9zPLeSWUsC86h_r7kyEmwYPTBqcow,6684
|
110
110
|
gibson/structure/Entity.py,sha256=N_Tx8RTs9ySMMgAoR9rVuMcsRgNA7zvNvJBScJLfYE4,675
|
111
111
|
gibson/structure/mysql/Entity.py,sha256=zolt3N_F3WlQtlOqrHflwsJeJ6r6A3MN4LxCzeAbU_k,3693
|
112
112
|
gibson/structure/mysql/testing.py,sha256=al4LI6e3bhjopsR0qTAmaOJyCQXF0_inVQ4xv7VQ6qo,9149
|
@@ -129,8 +129,8 @@ gibson/tests/test_Env.py,sha256=DPWmP0-aEelducq9bAwv7rKoY2NjWXUeCrzfJDQkn2M,369
|
|
129
129
|
gibson/tests/test_Memory.py,sha256=YP7owToABAk_-s7fD5UG0HTc4lamDjdA39JUlLnk3Fg,2574
|
130
130
|
gibson/tests/test_utils.py,sha256=r_y-EG05YTCNtL8MWiAK1KmPsmeoMgypKsQC_lVgOtM,559
|
131
131
|
venv/bin/activate_this.py,sha256=E1T7r3559tBsyqFpdcQW0HbY7gDvNiIv5Pc6HQ4bpoA,2383
|
132
|
-
gibson_cli-0.8.
|
133
|
-
gibson_cli-0.8.
|
134
|
-
gibson_cli-0.8.
|
135
|
-
gibson_cli-0.8.
|
136
|
-
gibson_cli-0.8.
|
132
|
+
gibson_cli-0.8.4.dist-info/METADATA,sha256=aW2ZihtrumK5XY9vi1wv1LVdC--xCYNTyjVYsP7LI8Q,14592
|
133
|
+
gibson_cli-0.8.4.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
134
|
+
gibson_cli-0.8.4.dist-info/entry_points.txt,sha256=j5VUvq3AzL21xPvVC24zMoXFt-I5lUWulr66nL3OAPM,50
|
135
|
+
gibson_cli-0.8.4.dist-info/top_level.txt,sha256=fSV3vegbdbSDwiB6n5z3FCeYwkIonzFrx4ek3F_OSdI,16
|
136
|
+
gibson_cli-0.8.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|