josw123 / dart-fss

한국 금융감독원에서 운영하는 다트(Dart) 시스템 크롤링을 위한 라이브러리
https://github.com/josw123/dart-fss
MIT License
327 stars 111 forks source link

docker에서 이상하게 작동. #20

Closed shinhwas closed 5 years ago

shinhwas commented 5 years ago

안녕하세요. ShinhwaS입니다. Docker에서 dataframe을 이상하게 계산하네요. 아래 코드를 수정한뒤 작동되네요. for key in df_count.keys().tolist(): if regex_pass.search(' '.join(index[1])): pass elif df_count[key] <= 1: drop_columns.append(key)

for key, count in df_count.items(): if regex_pass.search(' '.join(key[1])): pass elif count <= 1: drop_columns.append(key)

업데이트하느라 수고하셨습니다.

josw123 commented 5 years ago

버그 리포트 및 수정 감사합니다. 수정된 코드를 올리도록 하겠습니다.

josw123 commented 5 years ago

수정된 코드 업로드하였습니다. 다시한번 감사드립니다.