python爬虫航空路线
时间: 2023-10-06 19:05:34 浏览: 77
python路线
你可以使用Python编写爬虫程序来获取航空路线信息。以下是一个简单的示例:
```python
import requests
from bs4 import BeautifulSoup
def get_route_info():
url = 'https://www.example.com/routes' # 替换为目标网站的URL
headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0;Win64)AppleWebKit/537.36(KHTML,like Gecko)Chrome/58.0.3029.110 Safari/537.3'}
response = requests.get(url, headers=headers)
if response.status_code == 200:
soup = BeautifulSoup(response.text, 'html.parser')
# 使用BeautifulSoup解析页面,提取航空路线信息
routes = soup.find_all('div', class_='route')
for route in routes:
origin = route.find('span', class_='origin').text
destination = route.find('span', class_='destination').text
print(f"航线:{origin} - {destination}")
else:
print("请求失败")
get_route_info()
```
请注意,上述示例仅提供了一个基本的框架,你需要根据目标网站的具体结构和数据提取方法进行适当的修改和调整。另外,务必遵守网站的使用规则和法律法规,合法、合规地进行网络爬虫操作。
阅读全文