TypeError: Object of type 'bytes' is not JSON serializable

后端 未结 3 884
陌清茗
陌清茗 2020-12-05 22:57

I just started programming Python. I want to use scrapy to create a bot,and it showed TypeError: Object of type \'bytes\' is not JSON serializable when I run the project. <

3条回答
  •  抹茶落季
    2020-12-05 23:53

    I guess the answer you need is referenced here Python sets are not json serializable

    Not all datatypes can be json serialized . I guess pickle module will serve your purpose.

提交回复
热议问题