-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdictionary_utils.py
367 lines (311 loc) · 11.3 KB
/
dictionary_utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
#!/usr/bin/env python3
"""ARGOS dictionary utilities
This script will perform various functions related to processing the ARGOS
data dictionary and associated schemas. General help below.
usage: argosdb_dict_utils [options]
positional arguments:
{functions,validate,write_schema,validate_columns}
functions List of all available functions
validate Validation options. Used to test a data sheet against
a JSON schema. If no schema is supplied will throw an
error
write_schema Used to convert a TSV into a JSNO schema. If no mapping
file is provided, performs default conversions.
validate_columns Validates columns in a list of files in a directory
using provided column headers
optional arguments:
-h, --help show this help message and exit
-v, --version show program's version number and exit
"""
import csv
import json
import argparse
import sys
import os
from urllib.parse import urlparse
import urllib
__version__ = "1.4"
__status__ = "Production"
def usr_args():
"""User supplied arguments for functions
"""
parser = argparse.ArgumentParser()
parser = argparse.ArgumentParser(
prog='argosdb_dict_utils',
usage='%(prog)s [options]')
# version
parser.add_argument(
'-v', '--version',
action='version',
version='%(prog)s ' + __version__)
subparsers = parser.add_subparsers()
# Create parent subparser. Note `add_help=False` & creation via `argparse.`
parent_parser = argparse.ArgumentParser(add_help=False)
parent_parser.add_argument('-i', '--input',
required=True,
help="Input file to process")
parent_parser.add_argument('-d', '--directory',
help="Directory")
parent_parser.add_argument('-f', '--definitions',
help="Definitions")
parent_parser.add_argument('-c', '--column_index',
help="Column Index")
parent_parser.add_argument('-o', '--output',
help="Output file to create")
parent_parser.add_argument('-s', '--schema',
help="Root json schema to validate against.")
parent_parser.add_argument('-m', '--multi',
action='store_true',
help='Flag to indicate if multiple items are being processed')
parser_list_functions = subparsers.add_parser('functions',
help="List of all available functions")
parser_list_functions.set_defaults(func=list_functions)
parser_tsv2json = subparsers.add_parser('write_schema',
parents=[parent_parser],
help="Used to convert a TSV into a JSNO schema."
" If no mapping file is provided, performs default conversions.")
parser_tsv2json.set_defaults(func=list_2_schema)
parser_validate_columns = subparsers.add_parser('validate_columns',
parents=[parent_parser],
help=" Validates columns in a list of files in a directory using provided column headers")
parser_validate_columns.set_defaults(func=validate_columns)
if len(sys.argv) <= 1:
sys.argv.append('--help')
options = parser.parse_args()
if parser.parse_args().func is list_functions:
options.func(parser)
else:
options.func(options)
def list_functions(parser):
"""List Available Functions
Parameters
----------
parser: argparse.ArgumentParser
Argument parser object.
Returns
-------
Prints help for each function
"""
print('Function List', type(parser))
subparsers_actions = [
# pylint: disable=protected-access
action for action in parser._actions
# pylint: disable=W0212
if isinstance(action, argparse._SubParsersAction)]
for subparsers_action in subparsers_actions:
for choice, subparser in subparsers_action.choices.items():
print(f"Function: '{choice}'")
print(subparser.format_help())
print(parser.format_help())
def list_2_schema(options):
"""Create Schema JSON
Takes a TSV and writes JSON formatted schema
Parameters
----------
options.input: str
An inpit file to create the schema/schemas. This should be a TSV.
options.multi: bool
Default is False. If true the input file is treated as a flat version
of a multiple schemas. These will output to a list of JSON.
options.directory: str, optional
An output file. If this is supplied then the function output will be
written to this directory.
definition: str
a list of property definitions.
Returns
-------
Either writes JSON schema object/objects to a file (if options.output
is supplied) or prints to the terminal.
"""
if not options.directory:
print("No output directory supplied [-d]")
exit()
if not options.definitions:
print("No definition sheet supplied [-f]")
exit()
raw_url = 'https://raw.githubusercontent.com/FDA-ARGOS/data.argosdb/'+\
'v'+__version__+'/'+options.directory
definition = options.definitions
prop_defs = {}
with open(definition, 'r', encoding='utf8') as definitions:
def_data = csv.reader(definitions, delimiter="\t")
for row in def_data:
prop_defs[row[0].rstrip()] = row[3]
print(options.directory)
if os.path.exists(options.directory):
argos_schemas = {}
with open(options.input, 'r', encoding='utf8') as file:
data = csv.reader(file, delimiter="\t")
next(data)
count = 0
for row in data:
count+= 1
try:
prop_defs[row[0].rstrip()]
except KeyError:
print(f"Error! {row[0]} at row {count} is not defined in \
{definition}. Exiting.")
return
if row[1] not in argos_schemas:
argos_schemas[row[1]] = {
'definitions': {},
'$schema': 'http://json-schema.org/draft-07/schema#',
'$id': raw_url+row[1],
'title': row[1],
'type': 'object',
'required':[],
'properties':{}
}
argos_schemas[row[1]]['properties'][row[0]] = {
'$id':row[3],
'title': row[4],
'description': prop_defs[row[0].rstrip()],
'type': 'string',
'default': row[6],
'examples': [row[7]],
'pattern': row[8]
}
if row[2] == 'required':
(argos_schemas[row[1]]['required']).append(row[0])
jsonf = json.dumps(argos_schemas, indent=4)
else:
argos_schema = {
'definitions': {},
'$schema': 'http://json-schema.org/draft-07/schema#',
'$id': 'https://data.argos.org/schema/'+ options.input,
'title': options.input,
'type': 'object',
'required':[],
'properties':{}
}
with open(options.input, 'r', encoding='utf8') as file:
data = csv.reader(file, delimiter="\t")
next(data)
for row in data:
argos_schema['properties'][row[0]] = {
'$id':row[3],
'title': row[4],
'description': row[9],
'type': row[5],
'default': row[6],
'examples': row[7],
'pattern': row[8]
}
if row[2] == 'required':
argos_schema['required'].append(row[0])
jsonf = json.dumps(argos_schema, indent=4)
if os.path.exists(options.directory):
for item in argos_schemas:
output = options.directory+item.split('.')[0]+'.json'
print(output)
file_name = options.directory+item.split('.')[0]+'.json'
with open(file_name, 'w', encoding='utf-8') as file:
file.write(json.dumps(argos_schemas[item], indent=4))
else:
print('jsonf')
def validate_columns(options):
"""Validate Columns
Parameters
----------
options.input: str
An inpit file to create the schema/schemas. This should be a TSV.
Returns
-------
"""
columns = []
missing_keys = {}
try:
int(options.column_index)
except ValueError:
print('Column index is not a number')
return
count = 0
reader = open(options.input, 'r', encoding='utf8')
for i in reader:
columns.append(i.split("\t")[int(options.column_index)])
count += 1
with open('test2.json', 'w', encoding='utf8') as outfile:
json.dump(columns, outfile)
print(columns, outfile)
for filename in os.listdir(options.directory):
delimiter=""
if filename.endswith(".tsv"):
delimiter="\t"
elif filename.endswith(".csv"):
delimiter = ","
else:
continue
file_path = os.path.join(options.directory, filename)
if os.path.isfile(file_path):
data = open(file_path, 'r', encoding='utf8')
header=data.readline().split(delimiter)
header = [x.strip("\n").strip("\"").lower() for x in header]
missing_keys[filename] = [x for x in header if x not in columns]
with open(options.output, 'w', encoding='utf8') as outfile:
print(missing_keys, outfile)
json.dump(missing_keys, outfile)
def sheet_2_json(file_path):
"""Convert Data to JSON
Parameters
----------
file_path: str
An inpit file to convert to JSON. This should be a TSV/CSV.
Returns
-------
List of JSONs, one representing each row of the data file
"""
sheet = []
extension = file_path.split('.')[-1]
if extension == 'tsv':
delimiter='\t'
elif extension == 'csv':
delimiter=','
if os.path.exists(file_path):
print("Local file supplied")
with open(file_path, 'r', encoding='utf-8-sig') as file:
data = csv.reader(file, delimiter=delimiter)
header = next(data)
for row in data:
sheet.append(row)
elif url_valid(file_path) is True:
print("Remote file supplied")
response = urllib.request.urlopen(file_path)
lines = [l.decode('utf-8') for l in response.readlines()]
data = csv.reader(lines, delimiter=delimiter)
header = next(data)
for row in data:
sheet.append(row)
else:
print("Could not load file. Exiting")
return
data_list = []
for row in sheet:
line = {}
for count, item in enumerate(header):
line[item] = row[count]
data_list.append(line)
json_list = json.dumps(data_list)
return json_list
def url_valid(url):
"""Validate a URL
Parameters
----------
url: str
String as a URL to validate
Returns
-------
bool
A True or False value for the URL supplied
"""
try:
result = urlparse(url)
return all([result.scheme, result.netloc])
except ValueError:
return False
def main():
"""
Main function
"""
usr_args()
if __name__ == "__main__":
main()