Pylibnet 常量

发布于 2024-10-23 17:05:15 字数 168 浏览 3 评论 0原文

我正在 pylibnet 库中介绍自己,我想问你如何获取此代码中导入的常量。

import libnet
from libnet.constants import *

我尝试 help(libnet) 但我的问题没有任何答案。

谢谢你!!

i am introducing myself in the pylibnet library, I want to ask you how i can get the constants imported in this code.

import libnet
from libnet.constants import *

I try help(libnet) but there are nor any answers to my problem.

Thank you!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

昔梦 2024-10-30 17:05:15

您是否尝试过 dir(libnet.constants) ?

libnet.constants.__dict__ 也应该可以工作。

为了减少一点噪音,你可以这样做

[x for x in libnet.constants.__dict__ if x[:2] != '__' and not callable(libnet.constants.__dict__[x])]

Have you tried dir(libnet.constants) ?

Also libnet.constants.__dict__ should work.

To cut down on the noise a bit you could do

[x for x in libnet.constants.__dict__ if x[:2] != '__' and not callable(libnet.constants.__dict__[x])]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文