|
@@ -4,6 +4,7 @@ from fastapi import FastAPI
|
|
|
import sys
|
|
|
import os
|
|
|
import dataset
|
|
|
+import requests
|
|
|
import datetime
|
|
|
import json
|
|
|
import ast
|
|
@@ -38,6 +39,31 @@ async def query(qq):
|
|
|
|
|
|
|
|
|
|
|
|
+@app.get("/dm/{domain_name}")
|
|
|
+async def get_domain(domain_name):
|
|
|
+ url = "https://similarweb2.p.rapidapi.com/pageoverview"
|
|
|
+
|
|
|
+ if 'http' not in domain_name:
|
|
|
+ domain_name='http://'+domain_name
|
|
|
+ querystring = {"website":domain_name}
|
|
|
+
|
|
|
+ headers = {
|
|
|
+ "x-rapidapi-key": "6dd30886e0msh7aefc9a0a794398p1896f2jsn275c45475609",
|
|
|
+ "x-rapidapi-host": "similarweb2.p.rapidapi.com"
|
|
|
+ }
|
|
|
+
|
|
|
+ response = requests.request("GET", url, headers=headers, params=querystring)
|
|
|
+ print(response.text)
|
|
|
+ js=json.loads(response.text)
|
|
|
+ print(response.text)
|
|
|
+
|
|
|
+# desc=js['siteDescription']
|
|
|
+# ustr=desc.encode('utf-8').decode('utf-8')
|
|
|
+# print(ustr)
|
|
|
+ jsdict={'SiteName':js['name'],'Description':js['siteDescription'],'GlobalRank':js['globalRank'],'Title':js['name'],'Category':js['Category'],'CountryRank':js['countryRank']['rank']}
|
|
|
+ return JSONResponse(content=jsdict)
|
|
|
+
|
|
|
+
|
|
|
|
|
|
@app.get("/domain/{domain_name}")
|
|
|
async def read_item(domain_name):
|