python пакет automagica - почему имя '***' не определено? - PullRequest
0 голосов
/ 12 марта 2020

Я использую в Python 3.8.2 на Windows 10. После того, как я установил пакет automagica -

import automagica
display_message_box(title="Title", message="Example message")

выдает ошибку:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'display_message_box' is not defined

Почему можно ли display_message_box () быть найденным?

...