You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
colab 환경에서 readme 안내대로 실행해보았습니다. pip 로 정상적으로 설치하고, 패키지 정상 로드까지 확인했습니다.
이후 아래 코드로 크롤링한 후, 각 파일을 pandas로 열어보면 모두 EmptyDataError가 납니다.
파일을 직접 다운로드 받아 엑셀로 열어보면 모두 빈 파일(0바이트)입니다.
제가 뭔가 잘못 수행한 부분이 있을까요??
<실행코드>
# crawl news articles in output/
Crawler = ArticleCrawler()
Crawler.set_category("정치", "IT과학", "economy")
Crawler.set_date_range(2017, 1, 2017, 12)
Crawler.start()
# check result
for file in glob(output_dir + '*.csv'):
try:
display(pd.read_csv(file, header=None))
except Exception as inst:
print(type(inst))
print(inst.args)
print(inst)
print()
<출력 결과>
<class 'pandas.errors.EmptyDataError'>
('No columns to parse from file',)
No columns to parse from file
<class 'pandas.errors.EmptyDataError'>
('No columns to parse from file',)
No columns to parse from file
<class 'pandas.errors.EmptyDataError'>
('No columns to parse from file',)
No columns to parse from file
The text was updated successfully, but these errors were encountered:
안녕하세요, 편리한 패키지 공유해주셔서 감사합니다.
colab 환경에서
readme
안내대로 실행해보았습니다.pip
로 정상적으로 설치하고, 패키지 정상 로드까지 확인했습니다.이후 아래 코드로 크롤링한 후, 각 파일을
pandas
로 열어보면 모두EmptyDataError
가 납니다.파일을 직접 다운로드 받아 엑셀로 열어보면 모두 빈 파일(0바이트)입니다.
제가 뭔가 잘못 수행한 부분이 있을까요??
<실행코드>
<출력 결과>
The text was updated successfully, but these errors were encountered: