简体   繁体   中英

I get a this error when running scrapy spider ——> ValueError: time data '2022-10-10T13:00:00-07:00' does not match format '%Y-%m-%dT%H:%M:%S%z'

When I run the scrapy spider on my local computer it works perfectly. However, when I run it pyhonanywhere's bash terminal I get the following error.

ValueError: time data '2022-10-10T13:00:00-07:00' does not match format '%Y-%m-%dT%H:%M:%S%z

I'm not sure what the problem is as the format looks correct to me. Any help is appreciated

Try Removing the last colon in the timezone should be all you need. Python didn't add support for the colon until 3.7 so maybe it's running an older version....

'2022-10-10T13:00:00-0700'

%z

UTC offset in the form ±HHMM[SS[.ffffff]] (empty string if the object is naive).

examples: +0000 , -0400 , +1030 , +063415 , 030712.345216

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM