2 Star 1 Fork 3

Kris-CN/Fake-APP

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ip_GPS_API.py 483 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/python
# -*- coding: utf-8 -*-
import httplib2
from urllib.parse import urlencode # python3
# from urllib import urlencode #python2
params = urlencode({'ip': '9.8.8.8', 'datatype': 'jsonp', 'callback': 'find'})#修改ip的传入准则
url = 'https://api.ip138.com/ip/?' + params
headers = {"token": "fff157df08f78939102a31910b63ab93"} # token已经修改
http = httplib2.Http()
response, content = http.request(url, 'GET', headers=headers)
print(content.decode("utf-8"))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/Kris-CN/fake-app.git
git@gitee.com:Kris-CN/fake-app.git
Kris-CN
fake-app
Fake-APP
master

搜索帮助