Raja Tomar

Results 55 comments of Raja Tomar

I just checked the project again. No it doesn't allow pdf downloading as of now to avoid bandwidth issues. It could be available in future versions. On Thu, Jan 23,...

Whitelisting is not available in the current version. But there is an hack I built for making URLs absolute so that you can download any of the pdfs manually by...

It isnt ignoring the 'dots', this is a basic security measure to prevent unauthorized access to the user files by the program. If this protection is removed then the downloaded...

@user670 >Is it possible for this module to continue a suspended job, skipping files that have already been saved? Yes. Pywebcopy skips files that already exists, so you could consider...

The crawl length feature was removed as it was incompatible with new algorithm. You can try to subclass the crawler class and see what happens.

`File "/usr/local/lib/python3.9/logging/__init__.py", line 430, in _format return self._fmt % record.__dict__ TypeError: %d format: a number is required, not NoneType"` This seems to be occurring in the logging library itself, I...

@cmusik do a pr i will approve.

What code are you using? I need to see the log file if you find it properly. On Thu, Jan 23, 2020, 1:07 PM marshonhuckleberry wrote: > works on some...

Try setting up the user-agent in the `pywebcopy.config` so that it changes it across the project. ```python import pywebcopy pywebcopy.config['http_headers']['User-Agent'] = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like...

Value of `join_timeout` is applied to each thread, and you have set it to 30, so its most likely waiting on each thread for 30 seconds and looking like it...