jslin09 commited on
Commit
93e9b34
1 Parent(s): 1ce7271

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -68,7 +68,7 @@ def gen_template(crime_descrip, element, tag):
68
  template = blurb + '\n' + descript + '\n' + element + '\n' + tag + '\n' + end
69
  return template
70
 
71
- js_download = 'function downloadFile(result, filename) {
72
  //藉型別陣列建構的 blob 來建立 URL
73
  let fileName = filename;
74
  const data = result;
@@ -83,7 +83,7 @@ js_download = 'function downloadFile(result, filename) {
83
  link.download = fileName;
84
  link.click();
85
  }
86
- '
87
 
88
  # 下載判決書資料集
89
  use_auth_token = os.environ['HUB_TOKEN'] # 下載判決書資料集所需要的 token。
 
68
  template = blurb + '\n' + descript + '\n' + element + '\n' + tag + '\n' + end
69
  return template
70
 
71
+ js_download = '''function downloadFile(result, filename) {
72
  //藉型別陣列建構的 blob 來建立 URL
73
  let fileName = filename;
74
  const data = result;
 
83
  link.download = fileName;
84
  link.click();
85
  }
86
+ '''
87
 
88
  # 下載判決書資料集
89
  use_auth_token = os.environ['HUB_TOKEN'] # 下載判決書資料集所需要的 token。