Re: urlopen error [Errno 110] Connection timed out

2018-01-13 Thread suase9303
Yes! i can load the Url ("http://www.aaasports.co.kr/front/productlist.php?code=0010&brandcode=2&listnum=30&sort=&block=0&gotopage=1";) without issue. I think the time to load the URL is longer than any other URL, but it does not take much long. I searched for the Postman you suggested

Re: urlopen error [Errno 110] Connection timed out

2018-01-09 Thread Jason
Are you able to load the URL directly in the browser without issue? How about using an API client like Postman? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email

Re: urlopen error [Errno 110] Connection timed out

2018-01-09 Thread suase9303
Thanks.! I had better use an async task worker! i need to study the worker... the error happens with a specific URL. 2018년 1월 9일 화요일 오후 8시 7분 15초 UTC+9, Jason 님의 말: > > You really should use an async task worker like Celery for this, to get > the scraping outside of Django's request-response

Re: urlopen error [Errno 110] Connection timed out

2018-01-09 Thread Jason
You really should use an async task worker like Celery for this, to get the scraping outside of Django's request-response loop. Is the urlopen happening with any specific URL or seemingly at random? -- You received this message because you are subscribed to the Google Groups "Django users" gro

Re: urlopen error [Errno 110] Connection timed out

2018-01-08 Thread suase9303
> I use pythonanywhere. At this time, "urlopen error [Errno 110] Connection > timed out" occurs. So I set CACHES TIMEOUT to None in Django settings.py. > However, error 110 still occurs. Do I need to change the timeout value in > urllib / request.py? I would really appreciate

Re: urlopen error [Errno 110] Connection timed out

2018-01-08 Thread Julio Biason
nywhere. At this time, "urlopen error [Errno 110] Connection > timed out" occurs. So I set CACHES TIMEOUT to None in Django settings.py. > However, error 110 still occurs. Do I need to change the timeout value in > urllib / request.py? I would really appreciate your help in this ma

urlopen error [Errno 110] Connection timed out

2018-01-08 Thread suase9303
I use pythonanywhere. At this time, "urlopen error [Errno 110] Connection timed out" occurs. So I set CACHES TIMEOUT to None in Django settings.py. However, error 110 still occurs. Do I need to change the timeout value in urllib / request.py? I would really appreciate your help in t