aimodelshare 0.3.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- aimodelshare/README.md +26 -0
- aimodelshare/__init__.py +100 -0
- aimodelshare/aimsonnx.py +2381 -0
- aimodelshare/api.py +836 -0
- aimodelshare/auth.py +163 -0
- aimodelshare/aws.py +511 -0
- aimodelshare/aws_client.py +173 -0
- aimodelshare/base_image.py +154 -0
- aimodelshare/bucketpolicy.py +106 -0
- aimodelshare/color_mappings/color_mapping_keras.csv +121 -0
- aimodelshare/color_mappings/color_mapping_pytorch.csv +117 -0
- aimodelshare/containerisation.py +244 -0
- aimodelshare/containerization.py +712 -0
- aimodelshare/containerization_templates/Dockerfile.txt +8 -0
- aimodelshare/containerization_templates/Dockerfile_PySpark.txt +23 -0
- aimodelshare/containerization_templates/buildspec.txt +14 -0
- aimodelshare/containerization_templates/lambda_function.txt +40 -0
- aimodelshare/custom_approach/__init__.py +1 -0
- aimodelshare/custom_approach/lambda_function.py +17 -0
- aimodelshare/custom_eval_metrics.py +103 -0
- aimodelshare/data_sharing/__init__.py +0 -0
- aimodelshare/data_sharing/data_sharing_templates/Dockerfile.txt +3 -0
- aimodelshare/data_sharing/data_sharing_templates/__init__.py +1 -0
- aimodelshare/data_sharing/data_sharing_templates/buildspec.txt +15 -0
- aimodelshare/data_sharing/data_sharing_templates/codebuild_policies.txt +129 -0
- aimodelshare/data_sharing/data_sharing_templates/codebuild_trust_relationship.txt +12 -0
- aimodelshare/data_sharing/download_data.py +620 -0
- aimodelshare/data_sharing/share_data.py +373 -0
- aimodelshare/data_sharing/utils.py +8 -0
- aimodelshare/deploy_custom_lambda.py +246 -0
- aimodelshare/documentation/Makefile +20 -0
- aimodelshare/documentation/karma_sphinx_theme/__init__.py +28 -0
- aimodelshare/documentation/karma_sphinx_theme/_version.py +2 -0
- aimodelshare/documentation/karma_sphinx_theme/breadcrumbs.html +70 -0
- aimodelshare/documentation/karma_sphinx_theme/layout.html +172 -0
- aimodelshare/documentation/karma_sphinx_theme/search.html +50 -0
- aimodelshare/documentation/karma_sphinx_theme/searchbox.html +14 -0
- aimodelshare/documentation/karma_sphinx_theme/static/css/custom.css +2 -0
- aimodelshare/documentation/karma_sphinx_theme/static/css/custom.css.map +1 -0
- aimodelshare/documentation/karma_sphinx_theme/static/css/theme.css +2751 -0
- aimodelshare/documentation/karma_sphinx_theme/static/css/theme.css.map +1 -0
- aimodelshare/documentation/karma_sphinx_theme/static/css/theme.min.css +2 -0
- aimodelshare/documentation/karma_sphinx_theme/static/css/theme.min.css.map +1 -0
- aimodelshare/documentation/karma_sphinx_theme/static/font/fontello.eot +0 -0
- aimodelshare/documentation/karma_sphinx_theme/static/font/fontello.svg +32 -0
- aimodelshare/documentation/karma_sphinx_theme/static/font/fontello.ttf +0 -0
- aimodelshare/documentation/karma_sphinx_theme/static/font/fontello.woff +0 -0
- aimodelshare/documentation/karma_sphinx_theme/static/font/fontello.woff2 +0 -0
- aimodelshare/documentation/karma_sphinx_theme/static/js/theme.js +68 -0
- aimodelshare/documentation/karma_sphinx_theme/theme.conf +9 -0
- aimodelshare/documentation/make.bat +35 -0
- aimodelshare/documentation/requirements.txt +2 -0
- aimodelshare/documentation/source/about.rst +18 -0
- aimodelshare/documentation/source/advanced_features.rst +137 -0
- aimodelshare/documentation/source/competition.rst +218 -0
- aimodelshare/documentation/source/conf.py +58 -0
- aimodelshare/documentation/source/create_credentials.rst +86 -0
- aimodelshare/documentation/source/example_notebooks.rst +132 -0
- aimodelshare/documentation/source/functions.rst +151 -0
- aimodelshare/documentation/source/gettingstarted.rst +390 -0
- aimodelshare/documentation/source/images/creds1.png +0 -0
- aimodelshare/documentation/source/images/creds2.png +0 -0
- aimodelshare/documentation/source/images/creds3.png +0 -0
- aimodelshare/documentation/source/images/creds4.png +0 -0
- aimodelshare/documentation/source/images/creds5.png +0 -0
- aimodelshare/documentation/source/images/creds_file_example.png +0 -0
- aimodelshare/documentation/source/images/predict_tab.png +0 -0
- aimodelshare/documentation/source/index.rst +110 -0
- aimodelshare/documentation/source/modelplayground.rst +132 -0
- aimodelshare/exceptions.py +11 -0
- aimodelshare/generatemodelapi.py +1270 -0
- aimodelshare/iam/codebuild_policy.txt +129 -0
- aimodelshare/iam/codebuild_trust_relationship.txt +12 -0
- aimodelshare/iam/lambda_policy.txt +15 -0
- aimodelshare/iam/lambda_trust_relationship.txt +12 -0
- aimodelshare/json_templates/__init__.py +1 -0
- aimodelshare/json_templates/api_json.txt +155 -0
- aimodelshare/json_templates/auth/policy.txt +1 -0
- aimodelshare/json_templates/auth/role.txt +1 -0
- aimodelshare/json_templates/eval/policy.txt +1 -0
- aimodelshare/json_templates/eval/role.txt +1 -0
- aimodelshare/json_templates/function/policy.txt +1 -0
- aimodelshare/json_templates/function/role.txt +1 -0
- aimodelshare/json_templates/integration_response.txt +5 -0
- aimodelshare/json_templates/lambda_policy_1.txt +15 -0
- aimodelshare/json_templates/lambda_policy_2.txt +8 -0
- aimodelshare/json_templates/lambda_role_1.txt +12 -0
- aimodelshare/json_templates/lambda_role_2.txt +16 -0
- aimodelshare/leaderboard.py +174 -0
- aimodelshare/main/1.txt +132 -0
- aimodelshare/main/1B.txt +112 -0
- aimodelshare/main/2.txt +153 -0
- aimodelshare/main/3.txt +134 -0
- aimodelshare/main/4.txt +128 -0
- aimodelshare/main/5.txt +109 -0
- aimodelshare/main/6.txt +105 -0
- aimodelshare/main/7.txt +144 -0
- aimodelshare/main/8.txt +142 -0
- aimodelshare/main/__init__.py +1 -0
- aimodelshare/main/authorization.txt +275 -0
- aimodelshare/main/eval_classification.txt +79 -0
- aimodelshare/main/eval_lambda.txt +1709 -0
- aimodelshare/main/eval_regression.txt +80 -0
- aimodelshare/main/lambda_function.txt +8 -0
- aimodelshare/main/nst.txt +149 -0
- aimodelshare/model.py +1543 -0
- aimodelshare/modeluser.py +215 -0
- aimodelshare/moral_compass/README.md +408 -0
- aimodelshare/moral_compass/__init__.py +65 -0
- aimodelshare/moral_compass/_version.py +3 -0
- aimodelshare/moral_compass/api_client.py +601 -0
- aimodelshare/moral_compass/apps/__init__.py +69 -0
- aimodelshare/moral_compass/apps/ai_consequences.py +540 -0
- aimodelshare/moral_compass/apps/bias_detective.py +714 -0
- aimodelshare/moral_compass/apps/ethical_revelation.py +898 -0
- aimodelshare/moral_compass/apps/fairness_fixer.py +889 -0
- aimodelshare/moral_compass/apps/judge.py +888 -0
- aimodelshare/moral_compass/apps/justice_equity_upgrade.py +853 -0
- aimodelshare/moral_compass/apps/mc_integration_helpers.py +820 -0
- aimodelshare/moral_compass/apps/model_building_game.py +1104 -0
- aimodelshare/moral_compass/apps/model_building_game_beginner.py +687 -0
- aimodelshare/moral_compass/apps/moral_compass_challenge.py +858 -0
- aimodelshare/moral_compass/apps/session_auth.py +254 -0
- aimodelshare/moral_compass/apps/shared_activity_styles.css +349 -0
- aimodelshare/moral_compass/apps/tutorial.py +481 -0
- aimodelshare/moral_compass/apps/what_is_ai.py +853 -0
- aimodelshare/moral_compass/challenge.py +365 -0
- aimodelshare/moral_compass/config.py +187 -0
- aimodelshare/placeholders/model.onnx +0 -0
- aimodelshare/placeholders/preprocessor.zip +0 -0
- aimodelshare/playground.py +1968 -0
- aimodelshare/postprocessormodules.py +157 -0
- aimodelshare/preprocessormodules.py +373 -0
- aimodelshare/pyspark/1.txt +195 -0
- aimodelshare/pyspark/1B.txt +181 -0
- aimodelshare/pyspark/2.txt +220 -0
- aimodelshare/pyspark/3.txt +204 -0
- aimodelshare/pyspark/4.txt +187 -0
- aimodelshare/pyspark/5.txt +178 -0
- aimodelshare/pyspark/6.txt +174 -0
- aimodelshare/pyspark/7.txt +211 -0
- aimodelshare/pyspark/8.txt +206 -0
- aimodelshare/pyspark/__init__.py +1 -0
- aimodelshare/pyspark/authorization.txt +258 -0
- aimodelshare/pyspark/eval_classification.txt +79 -0
- aimodelshare/pyspark/eval_lambda.txt +1441 -0
- aimodelshare/pyspark/eval_regression.txt +80 -0
- aimodelshare/pyspark/lambda_function.txt +8 -0
- aimodelshare/pyspark/nst.txt +213 -0
- aimodelshare/python/my_preprocessor.py +58 -0
- aimodelshare/readme.md +26 -0
- aimodelshare/reproducibility.py +181 -0
- aimodelshare/sam/Dockerfile.txt +8 -0
- aimodelshare/sam/Dockerfile_PySpark.txt +24 -0
- aimodelshare/sam/__init__.py +1 -0
- aimodelshare/sam/buildspec.txt +11 -0
- aimodelshare/sam/codebuild_policies.txt +129 -0
- aimodelshare/sam/codebuild_trust_relationship.txt +12 -0
- aimodelshare/sam/codepipeline_policies.txt +173 -0
- aimodelshare/sam/codepipeline_trust_relationship.txt +12 -0
- aimodelshare/sam/spark-class.txt +2 -0
- aimodelshare/sam/template.txt +54 -0
- aimodelshare/tools.py +103 -0
- aimodelshare/utils/__init__.py +78 -0
- aimodelshare/utils/optional_deps.py +38 -0
- aimodelshare/utils.py +57 -0
- aimodelshare-0.3.7.dist-info/METADATA +298 -0
- aimodelshare-0.3.7.dist-info/RECORD +171 -0
- aimodelshare-0.3.7.dist-info/WHEEL +5 -0
- aimodelshare-0.3.7.dist-info/licenses/LICENSE +5 -0
- aimodelshare-0.3.7.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,244 @@
|
|
|
1
|
+
import json
|
|
2
|
+
import boto3
|
|
3
|
+
import os
|
|
4
|
+
import shutil
|
|
5
|
+
import tempfile
|
|
6
|
+
import time
|
|
7
|
+
from aimodelshare.aws import get_s3_iam_client, run_function_on_lambda, get_token, get_aws_token, get_aws_client
|
|
8
|
+
|
|
9
|
+
import importlib.resources as pkg_resources
|
|
10
|
+
from string import Template
|
|
11
|
+
|
|
12
|
+
def create_bucket(s3_client, bucket_name, region):
|
|
13
|
+
try:
|
|
14
|
+
response=s3_client.head_bucket(Bucket=bucket_name)
|
|
15
|
+
except:
|
|
16
|
+
if(region=="us-east-1"):
|
|
17
|
+
response = s3_client.create_bucket(
|
|
18
|
+
ACL="private",
|
|
19
|
+
Bucket=bucket_name
|
|
20
|
+
)
|
|
21
|
+
else:
|
|
22
|
+
location={'LocationConstraint': region}
|
|
23
|
+
response=s3_client.create_bucket(
|
|
24
|
+
ACL="private",
|
|
25
|
+
Bucket=bucket_name,
|
|
26
|
+
CreateBucketConfiguration=location
|
|
27
|
+
)
|
|
28
|
+
return response
|
|
29
|
+
|
|
30
|
+
def deploy_container(account_id, region, session, project_name, model_dir, requirements_file_path, apiid, memory_size='1024', timeout='120', python_version='3.7', pyspark_support=False):
|
|
31
|
+
|
|
32
|
+
codebuild_bucket_name=os.environ.get("BUCKET_NAME") # s3 bucket name to create #TODO: use same bucket and subfolder we used previously to store this data
|
|
33
|
+
# Why? AWS limits users to 100 total buckets! Our old code only creates one per user per acct.
|
|
34
|
+
|
|
35
|
+
repository=project_name.lower()+'repository' # repository name to create
|
|
36
|
+
|
|
37
|
+
template_folder=tempfile.gettempdir()+'/'+project_name # folder to create for sam
|
|
38
|
+
|
|
39
|
+
stack_name=project_name+'-stack' # stack name to be created in cloudformation
|
|
40
|
+
|
|
41
|
+
docker_tag='latest'
|
|
42
|
+
function_name=project_name
|
|
43
|
+
role_name=project_name+'-lambda-role'
|
|
44
|
+
policy_name=project_name+'-lambda-policy'
|
|
45
|
+
|
|
46
|
+
codebuild_role_name=project_name+'-codebuild-role'
|
|
47
|
+
codebuild_policies_name=project_name+'-codebuild-policies'
|
|
48
|
+
|
|
49
|
+
codebuild_project_name=project_name+'-project'
|
|
50
|
+
|
|
51
|
+
aws_access_key_id = str(os.environ.get("AWS_ACCESS_KEY_ID_AIMS"))
|
|
52
|
+
aws_secret_access_key = str(os.environ.get("AWS_SECRET_ACCESS_KEY_AIMS"))
|
|
53
|
+
region_name = str(os.environ.get("AWS_REGION_AIMS"))
|
|
54
|
+
|
|
55
|
+
s3, iam, region = get_s3_iam_client(aws_access_key_id, aws_secret_access_key, region_name)
|
|
56
|
+
create_bucket(s3['client'], codebuild_bucket_name, region)
|
|
57
|
+
|
|
58
|
+
s3_resource = session.resource('s3', region_name=region)
|
|
59
|
+
|
|
60
|
+
bucket_versioning = s3_resource.BucketVersioning(codebuild_bucket_name)
|
|
61
|
+
response = bucket_versioning.enable()
|
|
62
|
+
|
|
63
|
+
ecr = session.client('ecr')
|
|
64
|
+
|
|
65
|
+
#check repo name for issues
|
|
66
|
+
os.environ["repository"] = repository.lower()
|
|
67
|
+
response = ecr.create_repository(
|
|
68
|
+
repositoryName=repository.lower()
|
|
69
|
+
)
|
|
70
|
+
|
|
71
|
+
iam = session.client('iam')
|
|
72
|
+
|
|
73
|
+
import importlib_resources as pkg_resources
|
|
74
|
+
from . import sam
|
|
75
|
+
|
|
76
|
+
codebuild_trust_relationship = json.loads(pkg_resources.read_text(sam, 'codebuild_trust_relationship.txt'))
|
|
77
|
+
#with open(os.path.join('sam', 'codebuild_trust_relationship.txt'), 'r') as file:
|
|
78
|
+
# codebuild_trust_relationship = json.load(file)
|
|
79
|
+
|
|
80
|
+
response = iam.create_role(
|
|
81
|
+
RoleName=codebuild_role_name,
|
|
82
|
+
AssumeRolePolicyDocument=json.dumps(codebuild_trust_relationship)
|
|
83
|
+
)
|
|
84
|
+
|
|
85
|
+
codebuild_policies = json.loads(pkg_resources.read_text(sam, 'codebuild_policies.txt'))
|
|
86
|
+
#with open(os.path.join('sam', 'codebuild_policies.txt'), 'r') as file:
|
|
87
|
+
# codebuild_policies = json.load(file)
|
|
88
|
+
|
|
89
|
+
response = iam.create_policy(
|
|
90
|
+
PolicyName=codebuild_policies_name,
|
|
91
|
+
PolicyDocument=json.dumps(codebuild_policies),
|
|
92
|
+
)
|
|
93
|
+
|
|
94
|
+
response = iam.attach_role_policy(
|
|
95
|
+
RoleName=codebuild_role_name,
|
|
96
|
+
PolicyArn=''.join(['arn:aws:iam::', account_id, ':policy/', codebuild_policies_name])
|
|
97
|
+
)
|
|
98
|
+
|
|
99
|
+
os.mkdir(template_folder)
|
|
100
|
+
os.mkdir('/'.join([template_folder, 'app']))
|
|
101
|
+
|
|
102
|
+
#####
|
|
103
|
+
|
|
104
|
+
data = pkg_resources.read_text(sam, 'buildspec.txt')
|
|
105
|
+
#with open(os.path.join('sam', 'buildspec.txt'), 'r') as file:
|
|
106
|
+
# data = file.read()
|
|
107
|
+
|
|
108
|
+
template = Template(data)
|
|
109
|
+
newdata = template.substitute(
|
|
110
|
+
account_id=account_id,
|
|
111
|
+
region=region, #os.environ.get("region"),
|
|
112
|
+
repository_name=repository,
|
|
113
|
+
stack_name=stack_name)
|
|
114
|
+
with open(os.path.join(template_folder, 'buildspec.yml'), 'w') as file:
|
|
115
|
+
file.write(newdata)
|
|
116
|
+
|
|
117
|
+
#####
|
|
118
|
+
|
|
119
|
+
data = pkg_resources.read_text(sam, 'template.txt')
|
|
120
|
+
#with open(os.path.join('sam', 'template.txt'), 'r') as file:
|
|
121
|
+
# data = file.read()
|
|
122
|
+
|
|
123
|
+
#modfunction756350
|
|
124
|
+
|
|
125
|
+
template = Template(data)
|
|
126
|
+
newdata = template.substitute(
|
|
127
|
+
image_tag=docker_tag, #os.environ.get("docker_tag"),
|
|
128
|
+
role_name=role_name,
|
|
129
|
+
policy_name=policy_name,
|
|
130
|
+
function_name=function_name,
|
|
131
|
+
memory_size=memory_size,
|
|
132
|
+
timeout=timeout)
|
|
133
|
+
with open(os.path.join(template_folder, 'template.yml'), 'w') as file:
|
|
134
|
+
file.write(newdata)
|
|
135
|
+
|
|
136
|
+
#####
|
|
137
|
+
if pyspark_support:
|
|
138
|
+
data = pkg_resources.read_text(sam, 'Dockerfile_PySpark.txt')
|
|
139
|
+
#with open(os.path.join('sam', 'Dockerfile.txt'), 'r') as file:
|
|
140
|
+
# data = file.read()
|
|
141
|
+
|
|
142
|
+
template = Template(data)
|
|
143
|
+
newdata = template.substitute(
|
|
144
|
+
python_version=python_version,
|
|
145
|
+
directory=model_dir,
|
|
146
|
+
requirements_file_path=requirements_file_path,
|
|
147
|
+
PATH="$PATH",
|
|
148
|
+
SPARK_HOME="$SPARK_HOME",
|
|
149
|
+
PYTHONPATH="$PYTHONPATH",
|
|
150
|
+
JAVA_HOME="$JAVA_HOME"
|
|
151
|
+
)
|
|
152
|
+
|
|
153
|
+
with open(os.path.join('/'.join([template_folder, 'app']), 'Dockerfile'), 'w') as file:
|
|
154
|
+
file.write(newdata)
|
|
155
|
+
|
|
156
|
+
data = pkg_resources.read_text(sam, 'spark-class.txt')
|
|
157
|
+
|
|
158
|
+
template = Template(data)
|
|
159
|
+
newdata = template.substitute(
|
|
160
|
+
python_version=python_version,
|
|
161
|
+
var="$@"
|
|
162
|
+
)
|
|
163
|
+
|
|
164
|
+
with open(os.path.join('/'.join([template_folder, 'app']), 'spark-class'), 'w') as file:
|
|
165
|
+
file.write(newdata)
|
|
166
|
+
else:
|
|
167
|
+
data = pkg_resources.read_text(sam, 'Dockerfile.txt')
|
|
168
|
+
#with open(os.path.join('sam', 'Dockerfile.txt'), 'r') as file:
|
|
169
|
+
# data = file.read()
|
|
170
|
+
|
|
171
|
+
template = Template(data)
|
|
172
|
+
newdata = template.substitute(
|
|
173
|
+
python_version=python_version,
|
|
174
|
+
directory=model_dir,
|
|
175
|
+
requirements_file_path=requirements_file_path)
|
|
176
|
+
with open(os.path.join('/'.join([template_folder, 'app']), 'Dockerfile'), 'w') as file:
|
|
177
|
+
file.write(newdata)
|
|
178
|
+
|
|
179
|
+
response = shutil.copytree(model_dir, '/'.join([template_folder, 'app', model_dir]))
|
|
180
|
+
|
|
181
|
+
import zipfile
|
|
182
|
+
|
|
183
|
+
def get_all_file_paths(directory):
|
|
184
|
+
file_paths = []
|
|
185
|
+
for root, directories, files in os.walk(directory):
|
|
186
|
+
for filename in files:
|
|
187
|
+
filepath = os.path.join(root, filename)
|
|
188
|
+
file_paths.append(filepath)
|
|
189
|
+
return file_paths
|
|
190
|
+
|
|
191
|
+
file_paths = get_all_file_paths(template_folder)
|
|
192
|
+
|
|
193
|
+
template_folder_len = len(template_folder)
|
|
194
|
+
|
|
195
|
+
with zipfile.ZipFile(''.join([template_folder, '.zip']),'w') as zip:
|
|
196
|
+
for file in file_paths:
|
|
197
|
+
zip.write(file, file[template_folder_len:])
|
|
198
|
+
|
|
199
|
+
s3_client = session.client('s3')
|
|
200
|
+
s3_client.upload_file(''.join([template_folder, '.zip']),
|
|
201
|
+
codebuild_bucket_name,
|
|
202
|
+
''.join([apiid, '/', project_name, '.zip']))
|
|
203
|
+
|
|
204
|
+
codebuild = session.client('codebuild')
|
|
205
|
+
time.sleep(15)
|
|
206
|
+
response = codebuild.create_project(
|
|
207
|
+
name=codebuild_project_name,
|
|
208
|
+
source={
|
|
209
|
+
'type': 'S3',
|
|
210
|
+
'location': codebuild_bucket_name + '/' + apiid + '/' + project_name + '.zip'
|
|
211
|
+
},
|
|
212
|
+
artifacts={
|
|
213
|
+
'type': 'S3',
|
|
214
|
+
'location': codebuild_bucket_name
|
|
215
|
+
},
|
|
216
|
+
environment={
|
|
217
|
+
'type': 'LINUX_CONTAINER',
|
|
218
|
+
'image': 'aws/codebuild/standard:5.0',
|
|
219
|
+
'computeType': 'BUILD_GENERAL1_SMALL',
|
|
220
|
+
'privilegedMode': True
|
|
221
|
+
},
|
|
222
|
+
serviceRole=codebuild_role_name,
|
|
223
|
+
)
|
|
224
|
+
|
|
225
|
+
response = codebuild.start_build(
|
|
226
|
+
projectName=codebuild_project_name
|
|
227
|
+
)
|
|
228
|
+
|
|
229
|
+
while(True):
|
|
230
|
+
theBuild = codebuild.batch_get_builds(ids=[response['build']['id']])
|
|
231
|
+
buildStatus = theBuild['builds'][0]['buildStatus']
|
|
232
|
+
if buildStatus == 'SUCCEEDED':
|
|
233
|
+
buildSucceeded = True
|
|
234
|
+
break
|
|
235
|
+
elif buildStatus == 'FAILED' or buildStatus == 'FAULT' or buildStatus == 'STOPPED' or buildStatus == 'TIMED_OUT':
|
|
236
|
+
print("container failed to build on codebuild "+buildStatus)
|
|
237
|
+
break
|
|
238
|
+
time.sleep(10)
|
|
239
|
+
|
|
240
|
+
s3_client = session.client('s3')
|
|
241
|
+
s3_client.delete_object(Bucket=codebuild_bucket_name,
|
|
242
|
+
Key=apiid)
|
|
243
|
+
|
|
244
|
+
shutil.rmtree(template_folder)
|