Spaces:
Sleeping
Sleeping
rsdtデータの取得処理を改善し、ファイル存在チェックをZIPファイルからCSVファイルに変更。
Browse files
app.py
CHANGED
@@ -88,7 +88,7 @@ for pref_code in tqdm(pref_codes):
|
|
88 |
rsdt_url = f'https://catalog.registries.digital.go.jp/rsc/address/mt_rsdtdsp_rsdt_pref{pref_code}.csv.zip'
|
89 |
zip_file_path = temp_dir / f'mt_rsdtdsp_rsdt_pref{pref_code}.csv.zip'
|
90 |
|
91 |
-
if not os.path.exists(TARGET_DIR / 'rsdt' / f'mt_rsdtdsp_rsdt_pref{pref_code}.csv
|
92 |
response = requests.get(rsdt_url)
|
93 |
if response.status_code == 200: # URLが存在する場合のみ処理を続ける
|
94 |
with open(zip_file_path, 'wb') as f:
|
|
|
88 |
rsdt_url = f'https://catalog.registries.digital.go.jp/rsc/address/mt_rsdtdsp_rsdt_pref{pref_code}.csv.zip'
|
89 |
zip_file_path = temp_dir / f'mt_rsdtdsp_rsdt_pref{pref_code}.csv.zip'
|
90 |
|
91 |
+
if not os.path.exists(TARGET_DIR / 'rsdt' / f'mt_rsdtdsp_rsdt_pref{pref_code}.csv'):
|
92 |
response = requests.get(rsdt_url)
|
93 |
if response.status_code == 200: # URLが存在する場合のみ処理を続ける
|
94 |
with open(zip_file_path, 'wb') as f:
|