输入银行卡号查询发卡行执行代码-立哥开发

#Copy Right by Jacky Zong . Vision 1.5
from bs4 import BeautifulSoup
import urllib2
import json

ALI_BANKS = ‘http://ab.alipay.com/i/yinhang.htm’

try:
response = urllib2.urlopen(ALI_BANKS)
except urllib2.HTTPError, e:
print “HTTP Error %s : %s” % (e.code, e.reason)
system.exit(1)
except urllib2.URLError, e:
print “Unable to connect the remote server.”
system.exit(1)

content = response.read()

soup = BeautifulSoup(content)
spans = soup.find_all(“span”, class_=“icon”)

banks = {}

for span in spans:

banks[span[‘class’][1]] = span.text

banks = { span[‘class’][1] : span.text for span in spans }

print json.dumps(banks, ensure_ascii=False, indent=2)
print “total : %d” % len(banks)

Connection: keep-alive
Content-Language: zh-CN
Content-Length: 101
Content-Type: application/json;charset=GBK
Date: Sun, 08 Mar 2015 15:21:17 GMT
Server: spanner/1.0.6
Set-Cookie: JSESSIONID=CCDE8AA9E2DAEC082A7614734AF729FB; Path=/; HttpOnly
Set-Cookie: JSESSIONID=CCDE8AA9E2DAEC082A7614734AF729FB; Path=; Secure; HttpOnly
Set-Cookie: spanner=dauWw2JHEhbWoKV/zrMf2LLFCxFf8h1G;path=/;secure;
Strict-Transport-Security: max-age=31536000

{
“bank”: “Citi Bank”,
“cardType”: “DC”,
“key”: “622843012000000XXXXX”,
“messages”: [],
“stat”: “ok”,
“validated”: true
}

猜你喜欢

转载自blog.csdn.net/weixin_45806384/article/details/107092475
今日推荐