Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -11,60 +11,49 @@ import json
|
|
11 |
|
12 |
app = FastAPI()
|
13 |
|
14 |
-
def convert_cookies_to_dict(cookies):
|
15 |
-
cookies = dict([l.split("=", 1) for l in cookies.split("; ")])
|
16 |
-
return cookies
|
17 |
-
|
18 |
@app.get("/")
|
19 |
def main():
|
20 |
target_url = 'https://test5.container-z.art/test26'
|
21 |
wait_time = 10
|
22 |
-
header_list = '{"name": "John", "age": 30, "
|
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 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
"
|
61 |
-
"page_source": page_source,
|
62 |
-
"cookies": cookies,
|
63 |
-
"is_jump": is_jump
|
64 |
-
}
|
65 |
-
|
66 |
-
driver.quit()
|
67 |
-
return {"code": 200,"data":data}
|
68 |
|
69 |
if __name__ == '__main__':
|
70 |
uvicorn.run(app='app:app', host="0.0.0.0", port=7860)
|
|
|
11 |
|
12 |
app = FastAPI()
|
13 |
|
|
|
|
|
|
|
|
|
14 |
@app.get("/")
|
15 |
def main():
|
16 |
target_url = 'https://test5.container-z.art/test26'
|
17 |
wait_time = 10
|
18 |
+
header_list = '{"name": "John", "age": 30, "User-Agent": "New York"}'
|
19 |
+
|
20 |
+
try:
|
21 |
+
options = Options()
|
22 |
+
options.add_argument('--headless')
|
23 |
+
|
24 |
+
header_array = json.loads(header_list)
|
25 |
+
|
26 |
+
|
27 |
+
driver = webdriver.Chrome(options=options)
|
28 |
+
driver.get(target_url)
|
29 |
+
|
30 |
+
print(driver.page_source)
|
31 |
+
|
32 |
+
time.sleep(wait_time)
|
33 |
+
|
34 |
+
# 获取当前URL
|
35 |
+
current_url = driver.current_url
|
36 |
+
|
37 |
+
# 获取页面源代码
|
38 |
+
page_source = driver.page_source
|
39 |
+
|
40 |
+
# 获取cookie
|
41 |
+
cookies = driver.get_cookies()
|
42 |
+
|
43 |
+
# 是否有跳转过
|
44 |
+
is_jump = (target_url != current_url)
|
45 |
+
|
46 |
+
data = {
|
47 |
+
"url": current_url,
|
48 |
+
"page_source": page_source,
|
49 |
+
"cookies": cookies,
|
50 |
+
"is_jump": is_jump
|
51 |
+
}
|
52 |
+
|
53 |
+
driver.quit()
|
54 |
+
return {"code": 200,"data":data}
|
55 |
+
except Exception as e:
|
56 |
+
return {"code": 500,"msg":e}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
|
58 |
if __name__ == '__main__':
|
59 |
uvicorn.run(app='app:app', host="0.0.0.0", port=7860)
|