vanangamudi / newspaper-crawler-scripts

set of scripts for crawling newspaper websites.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Directory creation in Windows: Error

simmranvermaa opened this issue · comments

makedir from linux uses '/' whereas Windows uses '\' for paths in the creation of files and folders in a directory.
So instead of hard coding it for Windows and Linux separately, We'd like to have os.join to detect the os and choose the right option in the python script.

Issues fixed in main crawler.py and in malayalam oneindia file.

For every other files its pretty much about replacing / with os.sep in the respective ones.