|
@@ -121,12 +121,12 @@ async def index():
|
|
@app.post("/kw_dm")
|
|
@app.post("/kw_dm")
|
|
async def get_domain_by_keyword(req:kw_req):
|
|
async def get_domain_by_keyword(req:kw_req):
|
|
ls = domain_filter(search(req.keyword,num_results=20))
|
|
ls = domain_filter(search(req.keyword,num_results=20))
|
|
- jsdict = get_domain(ls[0])
|
|
|
|
|
|
+ jsdict = get_domain_data(ls[0])
|
|
return JSONResponse(content=jsdict)
|
|
return JSONResponse(content=jsdict)
|
|
|
|
|
|
@app.post("/dm")
|
|
@app.post("/dm")
|
|
async def get_domain_data(req:q_req):
|
|
async def get_domain_data(req:q_req):
|
|
- jsdict = get_domain(req.domain_name)
|
|
|
|
|
|
+ jsdict = get_domain_data(req.domain_name)
|
|
return JSONResponse(content=jsdict)
|
|
return JSONResponse(content=jsdict)
|
|
|
|
|
|
|
|
|