質問編集履歴
1
ソースコードの不要なコメントを削除しました
title
CHANGED
File without changes
|
body
CHANGED
@@ -30,11 +30,7 @@
|
|
30
30
|
tmp_path = os.getcwd().replace('/', os.sep)
|
31
31
|
|
32
32
|
for file in find_all_files(tmp_path):
|
33
|
-
print(file)
|
34
|
-
|
35
|
-
for file in find_all_files(tmp_path):
|
36
33
|
if(file.find('.pdf')>-1):
|
37
|
-
# print(file)
|
38
34
|
df = read_pdf(file, guess=False, encoding='cp932', pandas_options={'header':None})
|
39
35
|
df.to_csv(file+".csv")
|
40
36
|
|