2

我尝试从Client文件夹中的 Python 源代码中获取类图,pyreverse但它需要__init__.py

(venv) C:\Users\User\Desktop\project> pyreverse Client
parsing Client\__init__.py...
Failed to import module Client\__init__.py with error:
No module named Client\__init__.py.

我没有找到任何解决方案。有没有办法获取图表?

更新:文件夹 中有很多文件Client

Client.py
GUI.py
script.py
...

这是Client.py代码:

class Client:
    def __init__(self):
        self.socket = None
        self.listen_socket = None
        self.buff_dict = {}
        self.message_list_dict = {}
        self.lock = threading.Lock()
        self.target = None
        self.listen_flag = True
...

这是GUI.py代码:

class Window(object):
    def __init__(self, title, font, client):
        self.title = title
        self.font = font
        self.client = client
        self.root = tk.Tk()
        self.root.title(title)
        self.build_window()
        
class LoginWindow(Window):
    def __init__(self, client, font):
        super(LoginWindow, self).__init__('Login', font, client)
        self.build_window()
...
4

2 回答 2

4

感谢@Anwarvic 和@bruno,我想出了解决方案。

首先,__init__.pyClient文件夹中创建空文件:

(venv) C:\Users\User\Desktop\project\Client> type NUL >  __init__.py

然后转到Client我要获取类图的文件夹的父文件夹:

(venv) C:\Users\User\Desktop\project> pyreverse Client -o png

但我得到了这个错误:

The output format 'png' is currently not available.
Please install 'Graphviz' to have other output formats than 'dot' or 'vcg'.

经过一番调查,我找到了这个解决方案。然后我可以运行pyreverse没有任何错误。

这是我使用的类图pyreverse

在此处输入图像描述

于 2020-06-26T08:21:05.610 回答
1

似乎您__init__.py的文件夹中没有包含Client.py. 您应该能够只创建文件而不在其中放入任何内容,因为它的主要目的是表明该文件夹是一个包。

有关该文件的更深入解释,请参阅此 SO question about 。__init__.py

于 2020-06-26T06:52:03.747 回答