diff options
Diffstat (limited to 'ATRI/modules/b64/__init__.py')
-rw-r--r-- | ATRI/modules/b64/__init__.py | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/ATRI/modules/b64/__init__.py b/ATRI/modules/b64/__init__.py deleted file mode 100644 index 8cce6e0..0000000 --- a/ATRI/modules/b64/__init__.py +++ /dev/null @@ -1,26 +0,0 @@ -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' - find_img = Path('.') / 'ATRI' / 'data' / 'temp' / 'img' / f'{name}' - with open(find_img, 'wb') as f: - f.write(img_d.content) - if find_img.stat().st_size >= 1000000: - print('超过1MB,跳过!') - return - else: - 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
\ No newline at end of file |