gibson-cli 0.6.1__py3-none-any.whl → 0.7.0__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.
- gibson/api/BaseApi.py +2 -1
- gibson/api/Cli.py +9 -2
- gibson/command/Build.py +60 -8
- gibson/command/Help.py +0 -12
- gibson/command/Question.py +4 -7
- gibson/command/code/Code.py +42 -12
- gibson/command/code/Entity.py +25 -7
- gibson/command/code/Model.py +1 -1
- gibson/command/code/Schema.py +1 -1
- gibson/command/code/Test.py +35 -0
- gibson/command/code/Tests.py +12 -21
- gibson/command/importer/Import.py +83 -11
- gibson/command/importer/OpenApi.py +4 -9
- gibson/command/new/Module.py +1 -1
- gibson/command/new/New.py +3 -3
- gibson/command/new/Project.py +2 -2
- gibson/command/rewrite/Rewrite.py +9 -14
- gibson/command/tests/test_command_Conf.py +1 -0
- gibson/conf/Project.py +1 -0
- gibson/core/Configuration.py +21 -58
- gibson/core/Conversation.py +25 -7
- gibson/data/bash-completion.tmpl +3 -4
- gibson/data/postgresql/default-ref-table.tmpl +4 -0
- gibson/data/postgresql/default-table.tmpl +5 -0
- gibson/db/TableExceptions.py +3 -0
- gibson/db/tests/test_db_TableExceptions.py +4 -0
- gibson/services/code/context/schema/EntityKeys.py +3 -3
- gibson/services/code/context/schema/tests/test_code_context_schema_EntityKeys.py +3 -3
- gibson/structure/Entity.py +12 -109
- gibson/structure/mysql/Entity.py +117 -0
- gibson/structure/{constraints → mysql/constraints}/ReferenceConstraint.py +6 -2
- gibson/structure/{keys → mysql/keys}/ForeignKey.py +9 -5
- gibson/structure/{keys → mysql/keys}/Index.py +7 -3
- gibson/structure/{keys/tests/test_ForeignKey.py → mysql/keys/tests/test_structure_mysql_keys_ForeignKey.py} +16 -8
- gibson/structure/{keys/tests/test_Index.py → mysql/keys/tests/test_structure_mysql_keys_Index.py} +7 -3
- gibson/structure/{keys/tests/test_IndexAttribute.py → mysql/keys/tests/test_structure_mysql_keys_IndexAttribute.py} +1 -1
- gibson/structure/mysql/testing.py +231 -0
- gibson/structure/{tests/test_Entity.py → mysql/tests/test_structure_mysql_Entity.py} +34 -20
- gibson/structure/postgresql/Entity.py +108 -0
- gibson/structure/postgresql/References.py +61 -0
- gibson/structure/postgresql/table/ForeignKey.py +28 -0
- gibson/structure/postgresql/table/tests/test_structure_postgresql_table_ForeignKey.py +44 -0
- gibson/structure/{testing.py → postgresql/testing.py} +45 -82
- gibson/structure/postgresql/tests/test_structure_postgresql_Entity.py +82 -0
- gibson/structure/tests/test_structure_Entity.py +22 -0
- {gibson_cli-0.6.1.dist-info → gibson_cli-0.7.0.dist-info}/METADATA +25 -27
- {gibson_cli-0.6.1.dist-info → gibson_cli-0.7.0.dist-info}/RECORD +57 -47
- {gibson_cli-0.6.1.dist-info → gibson_cli-0.7.0.dist-info}/WHEEL +1 -1
- gibson/command/rewrite/Tests.py +0 -26
- /gibson/command/{rewrite → code}/Api.py +0 -0
- /gibson/command/{rewrite → code}/Base.py +0 -0
- /gibson/command/{rewrite → code}/Models.py +0 -0
- /gibson/command/{rewrite → code}/Schemas.py +0 -0
- /gibson/data/{default-ref-table.tmpl → mysql/default-ref-table.tmpl} +0 -0
- /gibson/data/{default-table.tmpl → mysql/default-table.tmpl} +0 -0
- /gibson/structure/{keys → mysql/keys}/IndexAttribute.py +0 -0
- {gibson_cli-0.6.1.dist-info → gibson_cli-0.7.0.dist-info}/entry_points.txt +0 -0
- {gibson_cli-0.6.1.dist-info → gibson_cli-0.7.0.dist-info}/top_level.txt +0 -0
@@ -1,97 +1,78 @@
|
|
1
|
-
from gibson.structure.Entity import Entity
|
1
|
+
from gibson.structure.postgresql.Entity import Entity
|
2
2
|
|
3
3
|
|
4
4
|
def structure_testing_get_entity():
|
5
5
|
entity = Entity()
|
6
6
|
entity.attributes = [
|
7
7
|
{
|
8
|
-
"as_": None,
|
9
|
-
"bytes_": None,
|
10
8
|
"check": None,
|
11
|
-
"
|
9
|
+
"datastore": {
|
10
|
+
"specifics": {
|
11
|
+
"references": None,
|
12
|
+
}
|
13
|
+
},
|
12
14
|
"data_type": {"formatted": "bigint", "raw": "bigint"},
|
13
15
|
"default": None,
|
14
|
-
"extra": {"increment": {"auto": True}},
|
15
16
|
"key": {"index": None, "primary": True, "unique": None},
|
16
17
|
"length": None,
|
17
18
|
"name": "id",
|
18
19
|
"nullable": False,
|
19
20
|
"numeric": {"precision": None, "scale": None},
|
20
|
-
"on": None,
|
21
|
-
"reference": None,
|
22
21
|
"sql": "id bigint not null auto_increment primary key",
|
23
|
-
"unsigned": None,
|
24
|
-
"values": None,
|
25
22
|
},
|
26
23
|
{
|
27
|
-
"as_": None,
|
28
|
-
"bytes_": None,
|
29
24
|
"check": None,
|
30
|
-
"
|
25
|
+
"datastore": {
|
26
|
+
"specifics": {
|
27
|
+
"references": None,
|
28
|
+
}
|
29
|
+
},
|
31
30
|
"data_type": {"formatted": "varchar(36)", "raw": "varchar"},
|
32
31
|
"default": None,
|
33
|
-
"extra": {"increment": {"auto": None}},
|
34
32
|
"key": {"index": None, "primary": None, "unique": True},
|
35
33
|
"length": 36,
|
36
34
|
"name": "uuid",
|
37
35
|
"nullable": False,
|
38
36
|
"numeric": {"precision": None, "scale": None},
|
39
|
-
"on": None,
|
40
|
-
"reference": None,
|
41
37
|
"sql": "uuid varchar(36) not null unique key",
|
42
|
-
"unsigned": None,
|
43
|
-
"values": None,
|
44
38
|
},
|
45
39
|
{
|
46
|
-
"as_": None,
|
47
|
-
"bytes_": None,
|
48
40
|
"check": None,
|
49
|
-
"
|
41
|
+
"datastore": {
|
42
|
+
"specifics": {
|
43
|
+
"references": None,
|
44
|
+
}
|
45
|
+
},
|
50
46
|
"data_type": {"formatted": "datetime", "raw": "datetime"},
|
51
47
|
"default": "current_timestamp",
|
52
|
-
"extra": {"increment": {"auto": None}},
|
53
48
|
"key": {"index": None, "primary": None, "unique": None},
|
54
49
|
"length": None,
|
55
50
|
"name": "date_created",
|
56
51
|
"nullable": False,
|
57
52
|
"numeric": {"precision": None, "scale": None},
|
58
|
-
"on": None,
|
59
|
-
"reference": None,
|
60
53
|
"sql": "date_created datetime not null default current_timestamp",
|
61
|
-
"unsigned": None,
|
62
|
-
"values": None,
|
63
54
|
},
|
64
55
|
{
|
65
|
-
"as_": None,
|
66
|
-
"bytes_": None,
|
67
56
|
"check": None,
|
68
|
-
"
|
57
|
+
"datastore": {
|
58
|
+
"specifics": {
|
59
|
+
"references": None,
|
60
|
+
}
|
61
|
+
},
|
69
62
|
"data_type": {"formatted": "datetime", "raw": "datetime"},
|
70
63
|
"default": "null",
|
71
|
-
"extra": {"increment": {"auto": None}},
|
72
64
|
"key": {"index": None, "primary": None, "unique": None},
|
73
65
|
"length": None,
|
74
66
|
"name": "date_updated",
|
75
67
|
"nullable": None,
|
76
68
|
"numeric": {"precision": None, "scale": None},
|
77
|
-
"on": "update current_timestamp",
|
78
|
-
"reference": None,
|
79
69
|
"sql": "date_updated datetime default null on update current_timestamp",
|
80
|
-
"unsigned": None,
|
81
|
-
"values": None,
|
82
70
|
},
|
83
71
|
]
|
84
72
|
entity.constraints = {"check": []}
|
85
73
|
entity.keys = {"foreign": [], "index": [], "primary": None, "unique": []}
|
86
74
|
entity.name = "abc_def"
|
87
|
-
entity.
|
88
|
-
"auto": None,
|
89
|
-
"charset": None,
|
90
|
-
"collate": None,
|
91
|
-
"default": None,
|
92
|
-
"engine": None,
|
93
|
-
"sql": None,
|
94
|
-
}
|
75
|
+
entity.table = None
|
95
76
|
|
96
77
|
return entity
|
97
78
|
|
@@ -103,92 +84,74 @@ def structure_testing_get_struct_data():
|
|
103
84
|
"struct": {
|
104
85
|
"attributes": [
|
105
86
|
{
|
106
|
-
"as_": None,
|
107
|
-
"bytes_": None,
|
108
87
|
"check": None,
|
109
|
-
"
|
88
|
+
"datastore": {
|
89
|
+
"specifics": {
|
90
|
+
"references": None,
|
91
|
+
}
|
92
|
+
},
|
110
93
|
"data_type": {"formatted": "bigint", "raw": "bigint"},
|
111
94
|
"default": None,
|
112
|
-
"extra": {"increment": {"auto": True}},
|
113
95
|
"key": {"index": None, "primary": True, "unique": None},
|
114
96
|
"length": None,
|
115
97
|
"name": "id",
|
116
98
|
"nullable": False,
|
117
99
|
"numeric": {"precision": None, "scale": None},
|
118
|
-
"on": None,
|
119
|
-
"reference": None,
|
120
100
|
"sql": "id bigint not null auto_increment primary key",
|
121
|
-
"unsigned": None,
|
122
|
-
"values": None,
|
123
101
|
},
|
124
102
|
{
|
125
|
-
"as_": None,
|
126
|
-
"bytes_": None,
|
127
103
|
"check": None,
|
128
|
-
"
|
104
|
+
"datastore": {
|
105
|
+
"specifics": {
|
106
|
+
"reference": None,
|
107
|
+
}
|
108
|
+
},
|
129
109
|
"data_type": {"formatted": "varchar(36)", "raw": "varchar"},
|
130
110
|
"default": None,
|
131
|
-
"extra": {"increment": {"auto": None}},
|
132
111
|
"key": {"index": None, "primary": None, "unique": True},
|
133
112
|
"length": 36,
|
134
113
|
"name": "uuid",
|
135
114
|
"nullable": False,
|
136
115
|
"numeric": {"precision": None, "scale": None},
|
137
|
-
"on": None,
|
138
|
-
"reference": None,
|
139
116
|
"sql": "uuid varchar(36) not null unique key",
|
140
|
-
"unsigned": None,
|
141
|
-
"values": None,
|
142
117
|
},
|
143
118
|
{
|
144
|
-
"as_": None,
|
145
|
-
"bytes_": None,
|
146
119
|
"check": None,
|
147
|
-
"
|
120
|
+
"datastore": {
|
121
|
+
"specifics": {
|
122
|
+
"references": None,
|
123
|
+
}
|
124
|
+
},
|
148
125
|
"data_type": {"formatted": "datetime", "raw": "datetime"},
|
149
126
|
"default": "current_timestamp",
|
150
|
-
"extra": {"increment": {"auto": None}},
|
151
127
|
"key": {"index": None, "primary": None, "unique": None},
|
152
128
|
"length": None,
|
153
129
|
"name": "date_created",
|
154
130
|
"nullable": False,
|
155
131
|
"numeric": {"precision": None, "scale": None},
|
156
|
-
"on": None,
|
157
|
-
"reference": None,
|
158
132
|
"sql": "date_created datetime not null default current_timestamp",
|
159
|
-
"unsigned": None,
|
160
|
-
"values": None,
|
161
133
|
},
|
162
134
|
{
|
163
|
-
"as_": None,
|
164
|
-
"bytes_": None,
|
165
135
|
"check": None,
|
166
|
-
"
|
136
|
+
"datastore": {
|
137
|
+
"specifics": {
|
138
|
+
"references": None,
|
139
|
+
}
|
140
|
+
},
|
167
141
|
"data_type": {"formatted": "datetime", "raw": "datetime"},
|
168
142
|
"default": "null",
|
169
|
-
"extra": {"increment": {"auto": None}},
|
170
143
|
"key": {"index": None, "primary": None, "unique": None},
|
171
144
|
"length": None,
|
172
145
|
"name": "date_updated",
|
173
146
|
"nullable": None,
|
174
147
|
"numeric": {"precision": None, "scale": None},
|
175
|
-
"
|
176
|
-
"
|
177
|
-
"sql": "date_updated datetime default null on update current_timestamp",
|
178
|
-
"unsigned": None,
|
179
|
-
"values": None,
|
148
|
+
"sql": "date_updated datetime default null on update "
|
149
|
+
+ "current_timestamp",
|
180
150
|
},
|
181
151
|
],
|
182
152
|
"constraints": {"check": []},
|
183
153
|
"keys": {"foreign": [], "index": [], "primary": None, "unique": []},
|
184
|
-
"
|
185
|
-
"auto": None,
|
186
|
-
"charset": None,
|
187
|
-
"collate": None,
|
188
|
-
"default": None,
|
189
|
-
"engine": None,
|
190
|
-
"sql": None,
|
191
|
-
},
|
154
|
+
"table": None,
|
192
155
|
},
|
193
156
|
}
|
194
157
|
}
|
@@ -0,0 +1,82 @@
|
|
1
|
+
import pytest
|
2
|
+
|
3
|
+
from gibson.structure.postgresql.Entity import Entity
|
4
|
+
from gibson.structure.postgresql.References import References
|
5
|
+
from gibson.structure.postgresql.table.ForeignKey import ForeignKey
|
6
|
+
from gibson.structure.postgresql.testing import (
|
7
|
+
structure_testing_get_entity,
|
8
|
+
structure_testing_get_struct_data,
|
9
|
+
)
|
10
|
+
|
11
|
+
|
12
|
+
def test_add_foreign_key():
|
13
|
+
references = References()
|
14
|
+
references.columns = ["a", "b"]
|
15
|
+
references.ref_table = "abc_def"
|
16
|
+
|
17
|
+
foreign_key = ForeignKey()
|
18
|
+
foreign_key.columns = ["c", "d"]
|
19
|
+
foreign_key.references = references
|
20
|
+
|
21
|
+
entity = structure_testing_get_entity()
|
22
|
+
entity.add_foreign_key(foreign_key)
|
23
|
+
|
24
|
+
assert entity.keys["foreign"] == [
|
25
|
+
{
|
26
|
+
"attributes": ["c", "d"],
|
27
|
+
"references": {
|
28
|
+
"attributes": ["a", "b"],
|
29
|
+
"datastore": {
|
30
|
+
"specifics": {
|
31
|
+
"match": {"full": None, "partial": None, "simple": None}
|
32
|
+
}
|
33
|
+
},
|
34
|
+
"entity": {"name": "abc_def", "schema_": None},
|
35
|
+
"on": {"delete": None, "update": None},
|
36
|
+
"sql": "references abc_def (a, b)",
|
37
|
+
},
|
38
|
+
"sql": "foreign key (c, d) references abc_def (a, b)",
|
39
|
+
}
|
40
|
+
]
|
41
|
+
|
42
|
+
|
43
|
+
def test_add_attribute_after():
|
44
|
+
entity = structure_testing_get_entity()
|
45
|
+
entity.add_attribute("abc", "bigint", after="uuid")
|
46
|
+
|
47
|
+
assert entity.attributes[2]["sql"] == "abc bigint"
|
48
|
+
|
49
|
+
|
50
|
+
def test_add_attribute_before():
|
51
|
+
entity = structure_testing_get_entity()
|
52
|
+
entity.add_attribute("abc", "bigint", before="uuid")
|
53
|
+
|
54
|
+
assert entity.attributes[1]["sql"] == "abc bigint"
|
55
|
+
|
56
|
+
|
57
|
+
def test_add_attribute_append():
|
58
|
+
entity = structure_testing_get_entity()
|
59
|
+
entity.add_attribute("abc", "bigint")
|
60
|
+
|
61
|
+
assert entity.attributes[-1]["sql"] == "abc bigint"
|
62
|
+
|
63
|
+
|
64
|
+
def test_import_from_struct_incorrect_data_format():
|
65
|
+
with pytest.raises(RuntimeError) as e:
|
66
|
+
Entity().import_from_struct({"abc": "def"})
|
67
|
+
|
68
|
+
assert str(e.value) == "cannot import from struct, incorrect data format"
|
69
|
+
|
70
|
+
|
71
|
+
def test_import_from_struct():
|
72
|
+
entity = Entity().import_from_struct(structure_testing_get_struct_data())
|
73
|
+
|
74
|
+
assert entity.name == "abc_def"
|
75
|
+
assert len(entity.attributes) == 4
|
76
|
+
assert entity.attributes[0]["name"] == "id"
|
77
|
+
assert entity.attributes[1]["name"] == "uuid"
|
78
|
+
assert entity.attributes[2]["name"] == "date_created"
|
79
|
+
assert entity.attributes[3]["name"] == "date_updated"
|
80
|
+
assert entity.constraints == {"check": []}
|
81
|
+
assert entity.keys == {"foreign": [], "index": [], "primary": None, "unique": []}
|
82
|
+
assert entity.table is None
|
@@ -0,0 +1,22 @@
|
|
1
|
+
import pytest
|
2
|
+
|
3
|
+
from gibson.structure.Entity import Entity
|
4
|
+
from gibson.structure.mysql.Entity import Entity as MysqlEntity
|
5
|
+
from gibson.structure.postgresql.Entity import Entity as PostgresqlEntity
|
6
|
+
|
7
|
+
|
8
|
+
def test_instantiate_exceptions():
|
9
|
+
with pytest.raises(RuntimeError) as e:
|
10
|
+
Entity().instantiate("invalid")
|
11
|
+
|
12
|
+
assert str(e.value) == 'unrecognized datastore type "invalid"'
|
13
|
+
|
14
|
+
|
15
|
+
def test_instantiate_mysql():
|
16
|
+
entity = Entity().instantiate("mysql")
|
17
|
+
assert isinstance(entity, MysqlEntity)
|
18
|
+
|
19
|
+
|
20
|
+
def test_instantiate_postgresql():
|
21
|
+
entity = Entity().instantiate("postgresql")
|
22
|
+
assert isinstance(entity, PostgresqlEntity)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: gibson-cli
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.7.0
|
4
4
|
Summary: Gibson Command Line Interface
|
5
5
|
Author-email: GibsonAI <noc@gibsonai.com>
|
6
6
|
Project-URL: Homepage, https://gibsonai.com/
|
@@ -120,7 +120,7 @@ Let's consider a more concrete example. You imported your datastore into the CLI
|
|
120
120
|
|
121
121
|
So Gibson creates a new version of the user table containing a nickname column. This new table is stored in last memory. If you execute:
|
122
122
|
|
123
|
-
`gibson
|
123
|
+
`gibson code models`
|
124
124
|
|
125
125
|
The CLI will write the code for what is sitting in last memory.
|
126
126
|
|
@@ -176,8 +176,8 @@ All of Gibson's configuration files and caches are stored in `$HOME/.gibson`. Us
|
|
176
176
|
- `:command! -nargs=* Gibson r ! gibson <args>`
|
177
177
|
- Open a file and execute commands:
|
178
178
|
- `:Gibson module abc`
|
179
|
-
- `:Gibson
|
180
|
-
- `:Gibson
|
179
|
+
- `:Gibson code models`
|
180
|
+
- `:Gibson code schemas`
|
181
181
|
|
182
182
|
## Currently Supported Software
|
183
183
|
|
@@ -235,10 +235,9 @@ Note: Gibson currently only supports MySQL. Let us know if you need something el
|
|
235
235
|
|
236
236
|
### Importing Your Datastore
|
237
237
|
|
238
|
-
`gibson import
|
238
|
+
`gibson import mysql` or `gibson import pg_dump /path/to/pg_dump.sql` or `gibson import openapi /path/to/openapi.json`
|
239
239
|
|
240
240
|
- This will make Gibson's stored memory aware of all of your datastore objects.
|
241
|
-
- `gibson import datastore .. dev`
|
242
241
|
- In addition to making Gibson aware, this will write all of the base, model and schema code for you.
|
243
242
|
|
244
243
|
### Configuring a Custom BaseModel
|
@@ -254,30 +253,30 @@ For example, you might provide class name = `MyBaseModel` and import path = `pro
|
|
254
253
|
|
255
254
|
### Writing the Base Code
|
256
255
|
|
257
|
-
`gibson
|
256
|
+
`gibson code base`
|
258
257
|
|
259
258
|
### Writing the Code for a Single Model
|
260
259
|
|
261
|
-
`gibson model [
|
260
|
+
`gibson code model [entity name]`
|
262
261
|
|
263
262
|
### Writing the Code for a Single Schema
|
264
263
|
|
265
|
-
`gibson schema [
|
264
|
+
`gibson code schema [entity name]`
|
266
265
|
|
267
266
|
### Writing the Code for All Models
|
268
267
|
|
269
|
-
`gibson
|
268
|
+
`gibson code models`
|
270
269
|
|
271
270
|
### Writing the Code for All Schemas
|
272
271
|
|
273
|
-
`gibson
|
272
|
+
`gibson code schemas`
|
274
273
|
|
275
274
|
### Adding a New Module to the Software Using AI
|
276
275
|
|
277
276
|
- gibson module [module name]
|
278
277
|
- e.g. gibson module user
|
279
278
|
- Gibson will display the SQL tables it has generated as a result of your request. It will store these entities in its last memory.
|
280
|
-
- `gibson
|
279
|
+
- `gibson code models`
|
281
280
|
- This will write the code for the entities it just created.
|
282
281
|
- `gibson merge`
|
283
282
|
- This will merge the new entities into your project.
|
@@ -285,10 +284,10 @@ For example, you might provide class name = `MyBaseModel` and import path = `pro
|
|
285
284
|
|
286
285
|
### Making Changes to the Software Using AI
|
287
286
|
|
288
|
-
- `gibson modify [
|
287
|
+
- `gibson modify [entity name] [natural language request]`
|
289
288
|
- e.g. `gibson modify my_table I want to add a new column called name and remove all of the columns related to email`
|
290
289
|
- Gibson will display the modified SQL table and store it in its last memory.
|
291
|
-
- `gibson
|
290
|
+
- `gibson code models`
|
292
291
|
- This will write the code for the modified entity.
|
293
292
|
- `gibson merge`
|
294
293
|
- This will merge the modified entity into your project.
|
@@ -314,7 +313,7 @@ For example, you might provide class name = `MyBaseModel` and import path = `pro
|
|
314
313
|
- Chat with Gibson and create a new project.
|
315
314
|
- When your project is complete Gibson will email you the API key.
|
316
315
|
- `gibson conf api::key [API key]`
|
317
|
-
- `gibson import api
|
316
|
+
- `gibson import api`
|
318
317
|
- Magic, no?
|
319
318
|
|
320
319
|
### Integrating a Model into Your Code
|
@@ -346,26 +345,25 @@ At the moment, just refer to the base-level schema directly.
|
|
346
345
|
|
347
346
|
### Migrating Your Software from PHP to Python
|
348
347
|
|
349
|
-
- Configure your datastore
|
350
|
-
- Turn on Dev Mode
|
351
|
-
- `gibson import
|
352
|
-
- 70% of your code is written, customize the remaining
|
348
|
+
- Configure your datastore
|
349
|
+
- Turn on Dev Mode
|
350
|
+
- `gibson import mysql` (alternatively import from pg_dump or openapi)
|
351
|
+
- 70% of your code is written, customize the remaining
|
353
352
|
|
354
353
|
### Asking Gibson Questions With Context
|
355
354
|
|
356
|
-
- `gibson
|
355
|
+
- `gibson q [natural language request]`
|
357
356
|
- Your natural language request can include:
|
358
357
|
- `file://[full path]` to import a file from the filesystem
|
359
358
|
- `py://[import]` to import a file from `PYTHONPATH`
|
360
359
|
- `sql://[entity name]` to import the SQL
|
361
360
|
- For example:
|
362
|
-
- `gibson
|
363
|
-
- `gibson
|
364
|
-
- `gibson
|
365
|
-
- When using `sql://`, any entities that are created as part of Gibson's response will be transferred into Gibson's last memory allowing you to execute a
|
366
|
-
- e.g. `gibson
|
367
|
-
- `gibson model`
|
368
|
-
- Important note, `gibson ?` may cause your shell to incorrectly interpret the question mark. If it does, you can use `gibson q` instead (just replace the question mark with the letter `q`).
|
361
|
+
- `gibson q format file:///Users/me/file.py for PEP8`
|
362
|
+
- `gibson q code review py://user.modules.User`
|
363
|
+
- `gibson q add nickname to sql://user`
|
364
|
+
- When using `sql://`, any entities that are created as part of Gibson's response will be transferred into Gibson's last memory allowing you to execute a query, create a new entity and have Gibson immediately create a model or schema from it.
|
365
|
+
- e.g. `gibson q add nickname to sql://user`
|
366
|
+
- `gibson code model user`
|
369
367
|
|
370
368
|
## Contributing
|
371
369
|
|
@@ -1,20 +1,20 @@
|
|
1
1
|
bin/build.sh,sha256=H3TAd349BECbcK3_t_jW9VzoLInMNrXtaLnXMEVanew,49
|
2
2
|
bin/clean.sh,sha256=bVJ1aL-IWconmyZ70OAcF0MHiPzpWCejPiIFJ72yFkM,55
|
3
3
|
bin/release.sh,sha256=LxPqH5kxhLKvzHaPRLBlq_ApaK7FHEteH4SzeRenidk,49
|
4
|
-
gibson/api/BaseApi.py,sha256=
|
5
|
-
gibson/api/Cli.py,sha256=
|
4
|
+
gibson/api/BaseApi.py,sha256=2vLcb4xYBAtMhCzhxAesEdan7FSxxD0eBC3EkPsW7Uk,3055
|
5
|
+
gibson/api/Cli.py,sha256=4MWxLWV2Sl_VQGwnu_k2b7L-pFSIrEMTcgCkMxI2ojA,8065
|
6
6
|
gibson/api/ProjectApi.py,sha256=T7TqtywJjrzFIfARenQUsrH-80x9Oo1pABbFAdlQkI0,356
|
7
7
|
gibson/bin/gibson.py,sha256=N1mAWaww9pw8s5u0et87FC5cFHVU6JzN4Kls3lDn-xw,354
|
8
8
|
gibson/command/BaseCommand.py,sha256=mmWUO0FxjMCbv3cHWnnasfAWnU_hTuGHUsRVJ4hUcqM,777
|
9
|
-
gibson/command/Build.py,sha256=
|
9
|
+
gibson/command/Build.py,sha256=FVvabrp7pGohvKS6CR30CGm-fcro7QbS-MxtKzXs4pc,4485
|
10
10
|
gibson/command/Conf.py,sha256=MbEPT-lRujRJMBjKRQlshA3T3pplQ-zzia8RY_muWU4,2472
|
11
11
|
gibson/command/Count.py,sha256=Jh9_ImJibpiTitbllSl0xF6KUrOhrY7Bz7-5sx9cBVs,1083
|
12
12
|
gibson/command/Dev.py,sha256=-kmRHpOApUXklaCs4bJVqCRft4ubcVjAL7S1-BGr-ps,4355
|
13
13
|
gibson/command/Forget.py,sha256=5fszuq6oIe0unMbXpFtDpouJ1eYZIvsi2mLsa8RwN5U,1061
|
14
|
-
gibson/command/Help.py,sha256=
|
14
|
+
gibson/command/Help.py,sha256=rsC5I0GZcblejAH34msbQjcB-LoDOt9WPoepPmNzweI,4285
|
15
15
|
gibson/command/Merge.py,sha256=R5ybMC1tUR5_T8YyUfXutzFa_V9j1_flv0s7KTJRq0M,1061
|
16
16
|
gibson/command/Modify.py,sha256=3_fEGvLfGpgoXQ77SFA9J2KQDe1GMaAUPWkl-yCwR1E,1267
|
17
|
-
gibson/command/Question.py,sha256=
|
17
|
+
gibson/command/Question.py,sha256=RIR-TorVnQCD74wYV2jIwfnIh0pOfnNIbcWBpBmf5FM,3926
|
18
18
|
gibson/command/Remove.py,sha256=fRPJCTCQFZVfl6Ri319E1ZudADkbWBZUOPiBue1Vrao,2512
|
19
19
|
gibson/command/Show.py,sha256=BOfgQQSo-q6RMWPgiyjcigwuW-fQmnQwUWdRbsslto8,1529
|
20
20
|
gibson/command/Tree.py,sha256=BeJ_13xrrRCK5FP2rQHWpDKrshVzte-_D1pNG1GXPIw,3056
|
@@ -23,29 +23,29 @@ gibson/command/WarGames.py,sha256=V0KIpz-Z546qtQaOPdIVHQ6wp2n3r3M3tgKx-GRQzzU,13
|
|
23
23
|
gibson/command/auth/Auth.py,sha256=U8i5a7hKVjYgiJgS0kbwEmgHPCzRbMkJ8x2g6odQWSM,1204
|
24
24
|
gibson/command/auth/Login.py,sha256=b43OfV76i6aGdOwj1NK64ZOdYlNyc08g3lZGQ_37KDw,437
|
25
25
|
gibson/command/auth/Logout.py,sha256=V01q4TdbiBqCnIrM6IA4T25fO6ws0UpXp42I3pwHZVM,248
|
26
|
-
gibson/command/code/
|
27
|
-
gibson/command/code/
|
28
|
-
gibson/command/code/
|
29
|
-
gibson/command/code/
|
30
|
-
gibson/command/code/
|
31
|
-
gibson/command/
|
32
|
-
gibson/command/
|
26
|
+
gibson/command/code/Api.py,sha256=sSvAqEJXdgQjYcu0uiM6ndHE3GnfkfVL6eqP2Otkbww,1002
|
27
|
+
gibson/command/code/Base.py,sha256=YJ2a5Hl0f9NXHUBBPvlt-dUIqEPWQz5vH6-1EHmbFbA,640
|
28
|
+
gibson/command/code/Code.py,sha256=Ce8jilFWl1B7Djabf4KoN3s8IgQPQchhxwOis0nFXvM,4234
|
29
|
+
gibson/command/code/Entity.py,sha256=Gqmyhm9sALvVaUARi5QjreSSSj9UrG5KHGD5hkhQQ5E,6568
|
30
|
+
gibson/command/code/Model.py,sha256=rJZfRMVbLgfcYRaWmEnzPe2B5hjnKwKDhuOZjkIEi6U,1087
|
31
|
+
gibson/command/code/Models.py,sha256=eoUpZHpR0qwNgX60EWfcNz49GHmBw_FGfBuHH2ueZqY,799
|
32
|
+
gibson/command/code/Schema.py,sha256=VPoTOBsSpyy7g7JGTWMnS3j5ZDjOa4eojALEf3ZUR7o,1091
|
33
|
+
gibson/command/code/Schemas.py,sha256=zZ1gjmOJg77gh70t5y2WkzHWSAvEKx5-gqRN9OcsCXA,802
|
34
|
+
gibson/command/code/Test.py,sha256=5mamQpHWhSEd5RGEPkxOwyELSc-m3Wh5EJhiZPqvJpA,1082
|
35
|
+
gibson/command/code/Tests.py,sha256=HO1WM6pSToVKsuJn7nUA_I5qrfBN0cgKgBzjlm2Qxt8,799
|
36
|
+
gibson/command/importer/Import.py,sha256=4ZHm-YsmRDjHebiJ0qmbC9NpGd0yFI1RZfXIcf01ruA,6794
|
37
|
+
gibson/command/importer/OpenApi.py,sha256=voTthxb0KDTlkEsHsIeJnyMxgEBbJKw9VTKDyGehopI,3759
|
33
38
|
gibson/command/list/Entities.py,sha256=4qUxR5pBsUwnaW3SZQzCVbwyl_sCfM9lD9TWwipSyWw,1869
|
34
39
|
gibson/command/list/List.py,sha256=dfqPSUMYzsYwVjYMslhqdP6YcI5Q4d-EoZgxJXaR_6w,1225
|
35
40
|
gibson/command/list/Projects.py,sha256=yR4o0eZFYxORLiEe0Z5Vs9T-hKb1NxrGVUOCrYx9qDM,1140
|
36
|
-
gibson/command/new/Module.py,sha256=
|
37
|
-
gibson/command/new/New.py,sha256
|
38
|
-
gibson/command/new/Project.py,sha256=
|
41
|
+
gibson/command/new/Module.py,sha256=MFbE4XY7YZz0I-SfxHxWe4FYiJHBssI2knATy1yuqs0,1599
|
42
|
+
gibson/command/new/New.py,sha256=-T4KobVOAKfHy3FGlqZnSWOOHEQGbRJH9AuN-4rUysA,1696
|
43
|
+
gibson/command/new/Project.py,sha256=Cw1Z6TvPIGhTi7GiQZ2VFjv6hXdpGKQdX9HuAd5gric,759
|
39
44
|
gibson/command/rename/Entity.py,sha256=SaAiN1bYsTOsqjyVzxghK8-N3sAKITThTzS5LEYgppY,1801
|
40
45
|
gibson/command/rename/Rename.py,sha256=T6iTjo6KRArbT8wBgrn-ehtNlY7tRlovlEZfBOUKYlk,731
|
41
|
-
gibson/command/rewrite/
|
42
|
-
gibson/command/rewrite/Base.py,sha256=YJ2a5Hl0f9NXHUBBPvlt-dUIqEPWQz5vH6-1EHmbFbA,640
|
43
|
-
gibson/command/rewrite/Models.py,sha256=eoUpZHpR0qwNgX60EWfcNz49GHmBw_FGfBuHH2ueZqY,799
|
44
|
-
gibson/command/rewrite/Rewrite.py,sha256=8ABvPKTwaF3bQLH7eJg0ejcidQULBeNJV5FqZcStevY,4733
|
45
|
-
gibson/command/rewrite/Schemas.py,sha256=zZ1gjmOJg77gh70t5y2WkzHWSAvEKx5-gqRN9OcsCXA,802
|
46
|
-
gibson/command/rewrite/Tests.py,sha256=HO1WM6pSToVKsuJn7nUA_I5qrfBN0cgKgBzjlm2Qxt8,799
|
46
|
+
gibson/command/rewrite/Rewrite.py,sha256=u7FMLbj0wyX2Hl5NFooaQ_rewL7LMn6bXHoMXilCtys,4553
|
47
47
|
gibson/command/tests/test_command_BaseCommand.py,sha256=hSbBfLFI3RTp_DdEHtm5oOLWoN6drI6ucFJypi7xxV8,364
|
48
|
-
gibson/command/tests/test_command_Conf.py,sha256=
|
48
|
+
gibson/command/tests/test_command_Conf.py,sha256=5eBuCjEfskjb-JujwwUDQLFKjc3uThO4cJj148JoxkE,597
|
49
49
|
gibson/conf/Api.py,sha256=GM9okYs1A8ujPjDwzziOoQpqRYFkr-dz5pgkfb6j4DI,59
|
50
50
|
gibson/conf/Code.py,sha256=3Bd5kxCbgWaUOyYLRejOO_SqM9spGk1dYAf2hYzuDSw,199
|
51
51
|
gibson/conf/Custom.py,sha256=7S5v3bQK3UKuGUMTrAJeubWqszDtMlJI19-yOXk1TFs,101
|
@@ -56,7 +56,7 @@ gibson/conf/Frameworks.py,sha256=Dv5iqeVe0JmNCKX5a-6S_dCrx7WZyI3qkTAFX6JWfDU,173
|
|
56
56
|
gibson/conf/Modeler.py,sha256=RayW3VFD_2nCFXZepfEcCXTUX2tWd7WtOjHULNVCai8,67
|
57
57
|
gibson/conf/Paths.py,sha256=FB8_w-8oCnzuqGIMVUahvZfl0p8i_ERnVzVPjuXTk3Y,243
|
58
58
|
gibson/conf/Platform.py,sha256=ai7bLab2Ak_zWiANJH78Pj3YjTlTCQ1EEtkFaVDijOc,307
|
59
|
-
gibson/conf/Project.py,sha256=
|
59
|
+
gibson/conf/Project.py,sha256=EXRWP208pOpRSn_TBepOoG6WdFxTb6b5qlS9hqhRpec,463
|
60
60
|
gibson/conf/Version.py,sha256=a1VNbiIj5E7m-PmH_pWBVFNf8Iu8zACSJ_qPNdtI9b0,89
|
61
61
|
gibson/conf/dev/Api.py,sha256=EKZwy-3h7NxLdP6AYtwyTpJhD1kdQN6gVLuWw4_2KC8,158
|
62
62
|
gibson/conf/dev/Base.py,sha256=HisA87syPa5sJFjfjyxWRkLIKuVM5CtAkwW3f2zJx5Y,72
|
@@ -67,18 +67,20 @@ gibson/conf/tests/test_conf_Platform.py,sha256=Zc53IsZmV-hT9VRrZEPNrsuehSdWnJXWK
|
|
67
67
|
gibson/core/Colors.py,sha256=VLlnhQTReqNnPL0VywOMQpNsyf6hZ2ndM-RvADrO39I,2106
|
68
68
|
gibson/core/CommandRouter.py,sha256=G_4_OToiBQUgvZbO_yuIqYGus0FtV_sk6s9LzGwR4RY,3227
|
69
69
|
gibson/core/Completions.py,sha256=Bsh25vnf0pjpJA6MJNR_2MA2s58Ujj8XolR8fm8AQ_s,1197
|
70
|
-
gibson/core/Configuration.py,sha256=
|
71
|
-
gibson/core/Conversation.py,sha256=
|
70
|
+
gibson/core/Configuration.py,sha256=c_YX0GFmiTIr4V0-2GmOuAipdq-WKO6QU2oHtPLP4iU,15784
|
71
|
+
gibson/core/Conversation.py,sha256=X9SeD9kBLmzEbZAOOTTZYV42HhHx-ud_HO_t20D33LA,10383
|
72
72
|
gibson/core/Env.py,sha256=08dZRHzzR0ahrbM4S0bXC7V1xhYQkT8Zefs00qUHf0U,498
|
73
73
|
gibson/core/Memory.py,sha256=kAo9kFgsIAVrofTRepv81pw43Sl2zQrNFsfIy_yMb_w,4037
|
74
74
|
gibson/core/PythonPath.py,sha256=p1q7n_5KnPvA8XbxJyvqC2vrIdEdTiMr6vRU9yj77Cs,1567
|
75
75
|
gibson/core/TimeKeeper.py,sha256=dSeIgGOQJOi0ULlFGAigroGTBfAZXrvP9a1Op_jIsZ0,300
|
76
76
|
gibson/core/utils.py,sha256=KTnPvA3sUYnLFTZG7Tke5YEdls8Da0rNbeaOm8hapiU,408
|
77
|
-
gibson/data/bash-completion.tmpl,sha256
|
78
|
-
gibson/data/default-ref-table.tmpl,sha256=cVqjTsmHDjmTGrbDEpNHaDG-GX1iWMzsQDXk5TASEXg,123
|
79
|
-
gibson/data/default-table.tmpl,sha256=4t7SmXBuZN4nV5SjuQp6PBdo0-c3hdRnl8TQ2wdaS3w,247
|
80
|
-
gibson/
|
81
|
-
gibson/
|
77
|
+
gibson/data/bash-completion.tmpl,sha256=-w5y4g3ZYN-7eBlIzu7Kh-RM-X2kYCf0Yp6RXNQozsM,2657
|
78
|
+
gibson/data/mysql/default-ref-table.tmpl,sha256=cVqjTsmHDjmTGrbDEpNHaDG-GX1iWMzsQDXk5TASEXg,123
|
79
|
+
gibson/data/mysql/default-table.tmpl,sha256=4t7SmXBuZN4nV5SjuQp6PBdo0-c3hdRnl8TQ2wdaS3w,247
|
80
|
+
gibson/data/postgresql/default-ref-table.tmpl,sha256=l1vzriqbW5x3s7qZjp9wkt7_gVKQM0BROk0hcc74URo,104
|
81
|
+
gibson/data/postgresql/default-table.tmpl,sha256=4xON0XyY55OiZhZmJ4RemnKMNFLniuSXnz7xaWu9QVI,185
|
82
|
+
gibson/db/TableExceptions.py,sha256=LGDPxAVjXmb0EJSFpHC6twHoFzv7nFsFzTj2DXNabQU,196
|
83
|
+
gibson/db/tests/test_db_TableExceptions.py,sha256=tNzn6SybygWXSuj-3i_s6t9LOo1P8gI9S4wSz4UxeCk,312
|
82
84
|
gibson/dev/Dev.py,sha256=O-GiMATpVd9kYHsVfbHaC-Omh17HQ8FalFQNelfxh2s,2544
|
83
85
|
gibson/display/Header.py,sha256=moTxePVMNhtpeFtcI9EhnnLSK1gHIQiwYiWQtBPq_bY,298
|
84
86
|
gibson/display/WorkspaceFooter.py,sha256=1-PsPtLcC7xUZLwufSSaVo9caXuyZEwfR_iZatxwHF4,316
|
@@ -90,10 +92,10 @@ gibson/lang/Python.py,sha256=WNbCTFhDh9qXVbeySyfaP-6m-c0wllSCZw8A-r_Z0Oo,1764
|
|
90
92
|
gibson/lang/tests/test_lang_Python.py,sha256=YpdqYOGAssg-jP9GuzfoU4Y4L7Boj0vAUAJgjuZvedo,1862
|
91
93
|
gibson/services/auth/Server.py,sha256=DfemWNZlZ3rDE6PsAAvDP0anK7czwhiadX6Wilo4agY,1936
|
92
94
|
gibson/services/code/context/schema/DataDictionary.py,sha256=zWLzxOzW8iMHxfXPEwnnbruEAtFa8j1UpghNd4AHzfA,369
|
93
|
-
gibson/services/code/context/schema/EntityKeys.py,sha256=
|
95
|
+
gibson/services/code/context/schema/EntityKeys.py,sha256=WxCDJTatb0jNmLon306HQ3WI8uls078F3zJCUVv7UB8,1587
|
94
96
|
gibson/services/code/context/schema/Manager.py,sha256=I_xcPrcE2nFJmBEXcIoJQ9lxKfWNQYHOEZNP0i9aYuY,906
|
95
97
|
gibson/services/code/context/schema/tests/test_code_context_schema_DataDictionary.py,sha256=YkWrE1lzpR0amIeQC7lTUCSp54FRMGJrkfmu1FeOI7M,364
|
96
|
-
gibson/services/code/context/schema/tests/test_code_context_schema_EntityKeys.py,sha256=
|
98
|
+
gibson/services/code/context/schema/tests/test_code_context_schema_EntityKeys.py,sha256=uYE8aIkKcRWjPMZIptgAIoWXSQOh7ktE_Rr1vaKYHL4,2132
|
97
99
|
gibson/services/code/context/schema/tests/test_code_context_schema_Manager.py,sha256=FiQFpFmJjv9g46QjmBjGVF3yz1GF0Q42j0fvZm5ZOYw,1230
|
98
100
|
gibson/services/code/customization/Authenticator.py,sha256=3VvxZsxelPPhxapHnsYhfMaFgdQ523dai9wxCNMa9Eg,372
|
99
101
|
gibson/services/code/customization/BaseCustomization.py,sha256=toCGRMF8VUXNIwScpAiiRqq4RT2rQCzYkbyypdfAAl4,1187
|
@@ -101,21 +103,29 @@ gibson/services/code/customization/CustomizationManager.py,sha256=M2gz98Yo2WTnnh
|
|
101
103
|
gibson/services/code/customization/Index.py,sha256=4Thf0gZM6VErZJS97w748PRNmHi8QvsyblOLCw1Y_XE,364
|
102
104
|
gibson/services/code/customization/tests/test_code_customization_Authenticator.py,sha256=kKExkLfKPpRA2NQH3fvRCuBEMhCGhR-IvNJqXuyBz3c,1949
|
103
105
|
gibson/services/code/customization/tests/test_code_customization_BaseCustomization.py,sha256=jaEwxxoU7d9ziOtfF21NPmZX2qSRpa-kz_8Ju9BKGts,412
|
104
|
-
gibson/structure/Entity.py,sha256=
|
105
|
-
gibson/structure/
|
106
|
-
gibson/structure/
|
107
|
-
gibson/structure/
|
108
|
-
gibson/structure/keys/
|
109
|
-
gibson/structure/keys/
|
110
|
-
gibson/structure/keys/
|
111
|
-
gibson/structure/keys/tests/
|
112
|
-
gibson/structure/keys/tests/
|
113
|
-
gibson/structure/tests/
|
106
|
+
gibson/structure/Entity.py,sha256=N_Tx8RTs9ySMMgAoR9rVuMcsRgNA7zvNvJBScJLfYE4,675
|
107
|
+
gibson/structure/mysql/Entity.py,sha256=zolt3N_F3WlQtlOqrHflwsJeJ6r6A3MN4LxCzeAbU_k,3693
|
108
|
+
gibson/structure/mysql/testing.py,sha256=al4LI6e3bhjopsR0qTAmaOJyCQXF0_inVQ4xv7VQ6qo,9149
|
109
|
+
gibson/structure/mysql/constraints/ReferenceConstraint.py,sha256=yDEaixA8OH55ZfVBxfw53mxy0-7xD-FDWNmTTA3NOWQ,1267
|
110
|
+
gibson/structure/mysql/keys/ForeignKey.py,sha256=VtaBiE99UXVrwzIISRvvoRBWyXpgf0eJAVLyR3REOyM,1359
|
111
|
+
gibson/structure/mysql/keys/Index.py,sha256=7_2kxbYdeEZAdKApgDdDfwNC8zVLSXo1JyllANSXsaU,1814
|
112
|
+
gibson/structure/mysql/keys/IndexAttribute.py,sha256=GL-ma2v_GidZ6jjIlFc6IWKe4Gtg4UJUlqf1cYisqS0,298
|
113
|
+
gibson/structure/mysql/keys/tests/test_structure_mysql_keys_ForeignKey.py,sha256=g3_frzTh4QDfAizUw6EIEMKXHCkboqYlfxDVf93KELU,2509
|
114
|
+
gibson/structure/mysql/keys/tests/test_structure_mysql_keys_Index.py,sha256=B6_N7CBBfWfilj91OR6TpmmZyGzc1CphuS5Hik35LKo,2267
|
115
|
+
gibson/structure/mysql/keys/tests/test_structure_mysql_keys_IndexAttribute.py,sha256=pcBk88REBt6QD2vp_ZNSk6ZGhEgUN7HoBxN4oPJobnc,394
|
116
|
+
gibson/structure/mysql/tests/test_structure_mysql_Entity.py,sha256=pXhW4mfoB9AcPyWP7cu6nx3ilgVovwpSKAvqFRBwNpY,3596
|
117
|
+
gibson/structure/postgresql/Entity.py,sha256=eBHsHlvOLZXiU8uxwhfF66GdCz-Fou0kShs7hEwV7_4,3331
|
118
|
+
gibson/structure/postgresql/References.py,sha256=ILNs88AriVGYJuYOfwS7d5aZeFe5TNuHNqI6lb4kOos,1771
|
119
|
+
gibson/structure/postgresql/testing.py,sha256=znghwbXOGZdzp7JF1YBNvZDAqg8GevXr-ZxX_ZaS1m8,6091
|
120
|
+
gibson/structure/postgresql/table/ForeignKey.py,sha256=HKu4JwwKmeAZJaYTWK5sSoJMEPr0XS017WXux55O0a8,704
|
121
|
+
gibson/structure/postgresql/table/tests/test_structure_postgresql_table_ForeignKey.py,sha256=ALaJt7S1K575xJw-5aH_mupYd4nKtUXVqYI1bLH6S-Q,1367
|
122
|
+
gibson/structure/postgresql/tests/test_structure_postgresql_Entity.py,sha256=PzQwOHJg7q4awmOawlViJi2RDyDX5iKaG6o7H-SMbNE,2622
|
123
|
+
gibson/structure/tests/test_structure_Entity.py,sha256=askl8w0p1uqET6HKBogJlRcPPwKEVa9HjeYlMk3ah8E,635
|
114
124
|
gibson/tests/test_Env.py,sha256=DPWmP0-aEelducq9bAwv7rKoY2NjWXUeCrzfJDQkn2M,369
|
115
125
|
gibson/tests/test_Memory.py,sha256=YP7owToABAk_-s7fD5UG0HTc4lamDjdA39JUlLnk3Fg,2574
|
116
126
|
gibson/tests/test_utils.py,sha256=r_y-EG05YTCNtL8MWiAK1KmPsmeoMgypKsQC_lVgOtM,559
|
117
|
-
gibson_cli-0.
|
118
|
-
gibson_cli-0.
|
119
|
-
gibson_cli-0.
|
120
|
-
gibson_cli-0.
|
121
|
-
gibson_cli-0.
|
127
|
+
gibson_cli-0.7.0.dist-info/METADATA,sha256=TPtLJIETCd_hfHOsBauX01WKfEVcmxhZd5PdOvIJK0E,13142
|
128
|
+
gibson_cli-0.7.0.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
129
|
+
gibson_cli-0.7.0.dist-info/entry_points.txt,sha256=j5VUvq3AzL21xPvVC24zMoXFt-I5lUWulr66nL3OAPM,50
|
130
|
+
gibson_cli-0.7.0.dist-info/top_level.txt,sha256=RFaUY7VXGiqkMwo1Rj7pM4kGvxkhhnfo-2LmPpuL_fs,11
|
131
|
+
gibson_cli-0.7.0.dist-info/RECORD,,
|