-
Notifications
You must be signed in to change notification settings - Fork 18
/
browser.py
52 lines (44 loc) · 1.5 KB
/
browser.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
# -*- coding: utf-8
import requests
import yaml
from yaml import Loader
class Browser(object):
"""
浏览器
"""
def __init__(self):
self.session = requests.Session()
self.hospital_id = ''
self.cookies = {}
with open('config.yaml', "r", encoding="utf-8") as yaml_file:
data = yaml.load(yaml_file, Loader)
self.hospital_id = data["hospitalId"]
self.cookies = {
"cmi-user-ticket": data["cmi-user-ticket"]
}
self.session.headers = {
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36',
'Content-Type': 'application/json; charset=UTF-8',
'Request-Source': 'PC',
'Referer': 'https://www.114yygh.com/hospital/' + self.hospital_id + '/home'
}
def load_cookies(self):
self.session.cookies = requests.utils.cookiejar_from_dict(self.cookies)
def get(self, url, data):
"""
http get
"""
pass
response = self.session.get(url)
if response.status_code == 200:
self.session.headers['Referer'] = response.url
return response
def post(self, url, data):
"""
http post
"""
response = self.session.post(url, json=data)
if response.status_code == 200:
self.session.headers['Referer'] = response.url
return response