通过python加载网站内容
如何通过python从网站加载特定内容?例如,我想加载博客的一些帖子并将它们显示到我自己的网站上。我该怎么做?
How can i load a specific content from a website through python?For example,i want to load some posts of a blog and appear them to my own site.How can i do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
答案:
然后你可以像这样使用它:
从指定的url获取c类的10个div...
有关返回对象的更多详细信息,请参阅Beautiful Soup。
An answer:
Then you can use it like:
To get 10 divs of class c from the specified url...
See Beautiful Soup for more details on the returned object.
urllib
和urllib2
将允许您加载原始 HTML。 HTML 解析器(例如 BeautifulSoup 和 lxml)将允许您解析原始 HTML,以便您可以获取您关心的部分。 Mako、Cheetah 等模板引擎可以让您生成 HTML,以便您可以显示网页。urllib
andurllib2
will let you load the raw HTML. HTML parsers such as BeautifulSoup and lxml will let you parse the raw HTML so you can get at the sections you care about. Template engines such as Mako, Cheetah, etc. will let you generate HTML so that you can have web pages to display.