代码拉取完成,页面将自动刷新
同步操作将从 小为/PTHospital.chrome 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
Created on 2016年5月4日
从 https://raw.githubusercontent.com/langhua9527/Hospital/master/README.md 中解析数据
@author: hustcc
'''
import requests
import re
import json
def get_readme_content():
r = requests.get("https://raw.githubusercontent.com/langhua9527/Hospital/master/README.md")
return r.text
def get_phone_num(content, i, max = 4):
" - 电话 +86 21 5187 6888"
cnt = 0
while True:
cnt = cnt + 1
if cnt > max:
return None
i = i - 1
line = content[i]
if line.startswith(u" - 电话 "):
return line[len(u" - 电话 "):]
def get_website(line):
" - 网址 www.tcmmh.com"
if line.startswith(u" - 网址 "):
return line[len(u" - 网址 "):]
return None
def get_name(content, i):
"- 上海市闵行区中医院"
cnt = 0
while True:
cnt = cnt + 1
i = i - 1
line = content[i]
if line.startswith(u"- "):
return line[len(u"- "):], cnt
def process_readme(content):
hos = {}
content = content.split("\n")
for i in xrange(len(content)):
line = content[i]
website = get_website(line)
if website:
name, max = get_name(content, i)
callnum = get_phone_num(content, i, max)
hos[website] = [(name or ""), callnum or ""]
# print website, hos[website]
return hos
if __name__ == '__main__':
content = get_readme_content()
hos = process_readme(content)
print len(hos)
print json.dumps(hos)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。