|
@@ -37,7 +37,15 @@ app.add_middleware(
|
|
class q_req(BaseModel):
|
|
class q_req(BaseModel):
|
|
domain_name: str
|
|
domain_name: str
|
|
|
|
|
|
-
|
|
|
|
|
|
+def fake_traffic(jsdict):
|
|
|
|
+ print('im here')
|
|
|
|
+ jsdict['totalVisits'] = js['totalVisits']*fake_traffic_weighted
|
|
|
|
+ for k,v in jsdict.items():
|
|
|
|
+ jsdict['EstimatedMonthlyVisits'][k]=v*fake_traffic_weighted
|
|
|
|
+ jsdict['CountryRank']-=fake_rank_plus
|
|
|
|
+ jsdict['GlobalRank']-=fake_rank_plus*66
|
|
|
|
+ return jsdict
|
|
|
|
+
|
|
@app.get("/index")
|
|
@app.get("/index")
|
|
async def index():
|
|
async def index():
|
|
return FileResponse('index.html')
|
|
return FileResponse('index.html')
|
|
@@ -113,15 +121,7 @@ async def get_domain(req:q_req):
|
|
jsdict = fake_traffic(jsdict)
|
|
jsdict = fake_traffic(jsdict)
|
|
return JSONResponse(content=jsdict)
|
|
return JSONResponse(content=jsdict)
|
|
|
|
|
|
- def fake_traffic(jsdict):
|
|
|
|
- print('im here')
|
|
|
|
- jsdict['totalVisits'] = js['totalVisits']*fake_traffic_weighted
|
|
|
|
- for k,v in jsdict.items():
|
|
|
|
- jsdict['EstimatedMonthlyVisits'][k]=v*fake_traffic_weighted
|
|
|
|
- jsdict['CountryRank']-=fake_rank_plus
|
|
|
|
- jsdict['GlobalRank']-=fake_rank_plus*66
|
|
|
|
- return jsdict
|
|
|
|
-
|
|
|
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
|
|