|
@@ -7,6 +7,7 @@ import dataset
|
|
|
import datetime
|
|
|
import json
|
|
|
import ast
|
|
|
+from fastapi.responses import JSONResponse
|
|
|
from fastapi.middleware.cors import CORSMiddleware
|
|
|
db = dataset.connect('sqlite:///similar.db')
|
|
|
|
|
@@ -39,7 +40,7 @@ async def read_item(domain_name):
|
|
|
print(c['dt'])
|
|
|
# jsdict=ast.literal_eval(c['json'])
|
|
|
jsdict=json.loads(c['json'])
|
|
|
- return jsdict
|
|
|
+ return JSONResponse(content=jsdict)
|
|
|
|
|
|
print(domain_name)
|
|
|
# conn = rpyc.connect("localhost",12345)
|
|
@@ -56,7 +57,7 @@ async def read_item(domain_name):
|
|
|
jstr=json.dumps(jsdict)
|
|
|
table.insert({'domain_name':domain_name,'json':jstr,'dt':datetime.datetime.now()})
|
|
|
db.commit()
|
|
|
- return jsdata
|
|
|
+ return JSONResponse(content=jsdict)
|
|
|
# print(jsdata)
|
|
|
# return {"item_id": domain_name}
|
|
|
|