BeautifulSoup error in google appengine

后端 未结 1 1008
夕颜
夕颜 2021-01-16 17:26

I have made an application in Google app engine that is using Beautiful Soup. I\'m using the latest version of it, http://www.crummy.com/software/BeautifulSoup/bs4/download/

1条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-16 18:18

    BeautifulSoup 4 needs Python 2.7 or newer, but Appengine has Python 2.5 by default. You can either:

    • Use Python 2.7 on Appengine (Edit: doesn't require a paid app. Thanks Grewe.)

    • Use BeautifulSoup 3 for now.

    0 讨论(0)
提交回复
热议问题