blob: f54334b886df301dd82e5a7b96a33d0c095d0f3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import os
import time
import base64
import requests
from pathlib import Path
path_temp_img = Path('.') / 'ATRI' / 'data' / 'temp' / 'img'
def b64_str_img_url(url: str):
img_d = requests.get(url)
name = 'temp.jpg'
with open(str(path_temp_img) + '/' + name, 'wb') as f:
f.write(img_d.content)
find_img = os.path.join(str(path_temp_img) + '/' + name)
with open(find_img, 'rb') as f:
content = f.read()
b64_str = base64.b64encode(content).decode()
time.sleep(1)
os.remove(str(path_temp_img) + '/' + name)
return b64_str
|