Update main.py
Browse files
main.py
CHANGED
@@ -24,11 +24,27 @@ async def startup_event():
|
|
24 |
|
25 |
@fast_app.get("/")
|
26 |
async def hello():
|
27 |
-
return {"success":
|
28 |
|
29 |
-
@fast_app.get("/
|
30 |
-
async def
|
31 |
-
|
32 |
-
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
|
34 |
run_fast(build=fast_app, port=7860)
|
|
|
24 |
|
25 |
@fast_app.get("/")
|
26 |
async def hello():
|
27 |
+
return {"success": "hello world!"}
|
28 |
|
29 |
+
@fast_app.get("/user/get_user")
|
30 |
+
async def get_user(user_id=None):
|
31 |
+
get_users = await client.get_users(user_id)
|
32 |
+
return {
|
33 |
+
"id": get_users.id,
|
34 |
+
"is_self": get_users.is_self,
|
35 |
+
"is_contact": get_users.is_contact,
|
36 |
+
"is_mutual_contact": get_users.is_mutual_contact,
|
37 |
+
"is_deleted": get_users.is_deleted,
|
38 |
+
"is_bot": get_users.is_bot,
|
39 |
+
"is_verified": get_users.is_verified,
|
40 |
+
"is_restricted": get_users.is_restricted,
|
41 |
+
"is_scam": get_users.is_scam,
|
42 |
+
"is_fake": get_users.is_fake,
|
43 |
+
"is_support": get_users.is_support,
|
44 |
+
"is_premium": get_users.is_premium,
|
45 |
+
"first_name": get_users.first_name,
|
46 |
+
"status": get_users.status.name,
|
47 |
+
"username": get_users.username if get_users else None,
|
48 |
+
}
|
49 |
|
50 |
run_fast(build=fast_app, port=7860)
|