randydev commited on
Commit
1001fe0
·
verified ·
1 Parent(s): debfb89

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +21 -5
main.py CHANGED
@@ -24,11 +24,27 @@ async def startup_event():
24
 
25
  @fast_app.get("/")
26
  async def hello():
27
- return {"success": response_json}
28
 
29
- @fast_app.get("/api/send")
30
- async def send_message():
31
- response_json = await client.send_message("@xpushz", "hello world!")
32
- return response_json
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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)