资源简介
原理利用网页 www.ip138.com 可以查询ip地理位置的功能,
利用爬虫从中获取ip地理位置
ip地理位置存在 标签中
代码片段和文件信息
#! /usr/bin/env python
#coding=utf-8
#原理利用网页 www.ip138.com 可以查询ip地理位置的功能,
#利用爬虫从中获取ip地理位置
#ip地理位置存在 标签中
import urllib2
from bs4 import BeautifulSoup
def get_http_content(url):
try:
user_agent = ‘Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)‘
headers = { ‘User-Agent‘ : user_agent }
html = urllib2.Request(url headers = headers)
myResponse = urllib2.urlopen(html)
myPage = myResponse.read()
except urllib2.URLError as e:
return None
try:
bsObj = BeautifulSoup(myPage‘html5l
相关资源
- Python爬虫源码—爬取猫途鹰官方旅游
- 爬取瓜子二手车.py
- 用python实现一个百度百科的爬虫工具
- alpha_shape.zip
- 问卷星爬虫带验证码
-
Python sc
ripts For ABAQUS: Learn By Example - 已知空间坐标和对应的属性,利用p
- 快来一起挖掘幸福感吧!.zip
- python爬取亚马逊排名
- Python数据科学指南_Code.zip
- Anaconda历史版本Python3.6版本.zip
- tradaboost
- 知乎爬虫
- 用python_Tkinter显示股票中K线图均线和
- Python3进程内存分析器-用于运行pytho
- python端口扫描器图形化界面.zip
- Web Scraping with Python 爬虫2015 高清.pdf版
- python爬取百度搜索新闻,并自动生成
- python三阶深度学习框架-Real-Time-Voice
- python网络爬虫视频教学国家精品课程
- Python爬取知乎回答中的文本及图片
- python 爬虫从入门到实战
- python爬虫数据可视化分析大作业.zip
- 中关村手机爬虫
- python 抓取1688店铺产品详情爬虫
-
sc
ripts for visdom - 共现矩阵生成器.zip
-
Pythonsc
ript插件用于notepad++的 -
notepad++下Pythonsc
ript插件 - 毕业论文完整版基于python的数据采集
评论
共有 条评论