作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
from bs4 import BeautifulSoup
import requests
site = 'https://www.france24.com/en/'
# Get HTML Content
r = requests.get(site)
soup = BeautifulSoup(r.content, 'html.parser')
print(soup)
# Find the Headline HTML
media_list = soup.find_all('div', class_='t-content__section-pb')
print(media_list)
我正在尝试从 France24 获取我正在开发的内容聚合器的 HTML。此代码适用于我尝试过的大多数网站,但由于某些原因,它会返回一些网站
You don't have permission to access "http://www.france24.com/en/" on this server.<p>
Reference #18.87e82d17.1592371984.e5f81db
最佳答案
您可以尝试在请求中传递 header 信息
site = 'https://www.france24.com/en/'
header = {
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36',
}
# Get HTML Content
r = requests.get(site, headers=header)
关于python - 美丽汤中的错误 : You don't have permission to access "url" on this server.,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62422172/
我正在努力学习 Ruby Koans 以尝试学习 Ruby,到目前为止一切顺利。我已经得到了贪婪的公案,在撰写本文时它是 183。我有一个可行的解决方案,但我觉得我只是拼凑了一堆 if/then 逻辑
我正在尝试创建一个扩展 boost 图形库行为的类。我希望我的类是一个模板,用户提供一个类型(类),用于在每个顶点存储属性。那只是背景。我正在努力创建一个更简洁的 typedef 来定义我的新类。 基
我正在使用 suds 包从网站查询 API,从他们的网站返回的数据如下所示: (1)。谁能告诉我这是什么格式? (2)。如果是这样,解析数据的最简单方法是什么?我已经使用 BeautifulSoup
所以我有一个看起来像这样的 html 文档: Speaker Name: Title of Talk | Subtitle | website.com ... [Other Stuff] Poste
我是一名优秀的程序员,十分优秀!