- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我用 python 创建了一个脚本来使用不同的域名
,以便从中解析标题
。我当前的尝试引发了以下明显的错误:
raise MissingSchema(error)
requests.exceptions.MissingSchema: Invalid URL 'Titanrestoration.Ca': No schema supplied. Perhaps you meant http://Titanrestoration.Ca?
到目前为止我的尝试:
import requests
from bs4 import BeautifulSoup
links = [
'Titanrestoration.Ca',
'Campbellroofing.Ca',
'Bjmillairebuilders.Ca',
'Rtroofing.Ca'
]
for link in links:
r = requests.get(link)
soup = BeautifulSoup(r.text,"lxml")
print(soup.title)
How can I make my script supply schemes if need be?
最佳答案
我们错过了这里的基本点。域名与协议(protocol)无关。无论 http 还是 https,域名都会重定向到实际站点。
import requests
from bs4 import BeautifulSoup
links = [
'Titanrestoration.Ca',
'Campbellroofing.Ca',
'Bjmillairebuilders.Ca',
'Rtroofing.Ca'
]
for link in links:
link = "http://" + link
r = requests.get(link)
soup = BeautifulSoup(r.text,"lxml")
print(soup.title)
如果您的架构已连接到某些域名,则应考虑剥离该架构并再次连接。
for link in links:
link = link.strip("http://")
link = "http://" + link
r = requests.get(link)
soup = BeautifulSoup(r.text,"lxml")
print(soup.title)
关于python - 无法在需要时制定我的脚本供应方案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56107200/
菜鸟问题。我正在尝试为我的 Vagrantfile 编写一个 shell 脚本,在服务器环境构建后加载数据库导出的自包含文件。目标是构建服务器,安装 mariadb,然后加载一个自包含的 sql 文件
这是我的 Vagrantfile 的一部分: config.vm.provision :shell, :privileged => false, :path => "bootstrap.sh"
我正在使用带有对 Elasticsearch 的响应式支持的 spring-data: @Repository public interface UserDocumentRepository exte
我想在Vagrant机器上运行docker镜像。 我的Vagrantfile很紧张: VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFI
尝试从旧版 Godeps 工作流迁移到官方支持的 Golang vendor 解决方案。 场景: Repo A=== \ ========> Repo C (s
我正在尝试使用 WHMCS API/配置模块在新的 WHM/cPanel 客户端完成托管订单后自动创建 mysql 数据库。 看起来应该很简单,但我在文档中找不到任何相关信息。 WHMCS 模块连接到
我正在努力让 Berkshelf 从我们的私有(private) BitBucket (git) 存储库中下载公司食谱。这是在 Windows 8.1 主机上。 我找到了this question并尝
我正在尝试在 Windows 8.1 上设置 Vagrant 进行 Web 开发。我已经遇到这个问题了undefined method “cheffish” for nil:NilClass ,所以我
我是一名优秀的程序员,十分优秀!