💄 Made a pretty ui

This commit is contained in:
2021-04-06 15:18:40 +03:00
parent cf7797419c
commit 5bf8fd6543
3 changed files with 50 additions and 16 deletions

8
utils/savePhoto.py Normal file
View File

@@ -0,0 +1,8 @@
from rich.console import Console
c = Console()
def save_photo(url):
f = open("output.txt", "a", encoding='utf-8')
f.write(url)
f.close()