randydev commited on
Commit
f979266
·
verified ·
1 Parent(s): 97c2ebc

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +11 -0
main.py CHANGED
@@ -79,6 +79,17 @@ async def get_user_story(link: str = None):
79
  "caption": None
80
  }
81
 
 
 
 
 
 
 
 
 
 
 
 
82
 
83
  @fast_app.get("/user/author/admin")
84
  async def get_author_chat_admin(username: str = None):
 
79
  "caption": None
80
  }
81
 
82
+ @fast_app.get("/user/media-dl/file_id")
83
+ async def get_download_media_file(file_id: str = None):
84
+ try:
85
+ image_path = await user_client.download_media(file_id)
86
+ except Exception as e:
87
+ return {"error": str(e)}
88
+ with open(image_path, "rb") as f:
89
+ base64_image = base64.b64encode(f.read()).decode("utf-8")
90
+ return {
91
+ "download": base64_image,
92
+ }
93
 
94
  @fast_app.get("/user/author/admin")
95
  async def get_author_chat_admin(username: str = None):