Your Name пре 3 година
родитељ
комит
2a0f581c2b
2 измењених фајлова са 31 додато и 3 уклоњено
  1. 26 0
      similar_server/main.py
  2. 5 3
      similar_web/index.html

+ 26 - 0
similar_server/main.py

@@ -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):

+ 5 - 3
similar_web/index.html

@@ -266,7 +266,9 @@
 
   function check_form(){
       const qry = document.getElementById('search_query').value;
-      axios.get('http://www.googo.org:8080/domain/' + qry)
+      axios.get('http://www.googo.org:8080/dm/' + qry)
+
+      //      axios.get('http://www.googo.org:8080/domain/' + qry)
       .then((response) => {
         const sitename = document.getElementById('sitename');
         const sitetitle = document.getElementById('sitetitle');
@@ -281,9 +283,9 @@
         //    alert(obj);
         itename.textContent =response.data.SiteName;
         descriptions.textContent=response.data.Description;
-        globalrank.textContent=response.data.GlobalRank.Rank;
+        globalrank.textContent=response.data.GlobalRank;
         sitetitle.textContent=response.data.Title;
-        countryrank.textContent=response.data.CountryRank.Rank;
+        countryrank.textContent=response.data.CountryRank;
         category.textContent=response.data.Category;
     
         const key_ary=[];