ming %!s(int64=3) %!d(string=hai) anos
pai
achega
9a466ad884
Modificáronse 1 ficheiros con 11 adicións e 10 borrados
  1. 11 10
      similar_web/main.py

+ 11 - 10
similar_web/main.py

@@ -75,12 +75,17 @@ async def get_domain(req:q_req):
             "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)
-
-
+        
+        js=''
+        for i in range(0,50):
+            while True:
+                try:
+                    response = requests.request("GET", url, headers=headers, params=querystring)
+                    js=json.loads(response.text)
+                except:
+                    continue
+                break
+                
         jsdict={'SiteName':js['name'],'Description':js['siteDescription'],'GlobalRank':js['globalRank'],'Title':js['name'],'Category':js['categoryRank']['taxonomy'],'CountryRank':js['countryRank']['rank']}
 
 
@@ -99,10 +104,6 @@ async def get_domain(req:q_req):
         ,'Title':jsdict['Title'],'Category':jsdict['Category'],'CountryRank':jsdict['CountryRank'],'EstimatedMonthlyVisits':jsdict['EstimatedMonthlyVisits']
         ,'totalVisits':jsdict['totalVisits']})
 
-    
-#    desc=js['siteDescription']
-#    ustr=desc.encode('utf-8').decode('utf-8')
-#    print(ustr)
     return JSONResponse(content=jsdict)