-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
20 lines (15 loc) · 604 Bytes
/
Copy pathmain.py
File metadata and controls
20 lines (15 loc) · 604 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from avatar_generator import AvatarGenerator
from notifypy import Notify
def generate_avatar():
generator = AvatarGenerator("./images")
generator.generate_avatar(100)
notification = Notify()
notification.title = "NFT AvatarGenerator"
notification.message = "Generating NFT Art Styled Avatar Profile Pictures."
notification.send()
if __name__ == "__main__":
generate_avatar()
notification = Notify()
notification.title = "NFT AvatarGenerator"
notification.message = "NFT Art Styled Avatar Profile Pictures Generated."
notification.send()