-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
63 lines (43 loc) · 1.7 KB
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import time, logging, asyncio
from midjourney import Sender, Receiver
from midjourney.config import load_json_config
params = load_json_config()
# Read more about flags at https://docs.midjourney.com/docs/models
flags = "--v 5.1"
sender = Sender(params=params, flags=flags)
receiver = Receiver(params=params, local_path="generated_img")
prompt = "A long-heared man reading book sitting on the chair staying at center of the night street"
def get_image_from_midjourney(prompt):
url = None
while receiver.check_result_with_prompt(prompt) != True:
time.sleep(5)
while url == None:
url = receiver.get_result_with_prompt(prompt)
return url
async def main():
logging.basicConfig(level=logging.INFO)
while True:
prompt = input("Enter prompt: ")
sender.send(prompt)
com = input("Enter command: ")
match com:
case "get-url":
try:
sender.send(prompt)
func = lambda: get_image_from_midjourney(prompt)
loop = asyncio.get_running_loop()
url = await loop.run_in_executor(None, func)
logging.info(
"Generated image URL has been retrieved. URL is " + url
)
except Exception as e:
logging.error(
"Unfortunately, <b>Midjourney</b> needed for the task has been confused :("
)
raise e
case "try-download":
receiver.collecting_results()
receiver.outputer()
receiver.downloading_results()
if __name__ == "__main__":
asyncio.run(main())