从 reportlab.platypus 导入 ListFlowable,ListItem 不起作用

发布于 2024-11-24 01:56:24 字数 447 浏览 2 评论 0原文

我是 python 的新手。我必须使用 Reportlab 在我的 pdf 文档中创建一个有序列表。我在 中找到了这两个类 ListFlowable()、ListItem() Reportlab 的用户指南可以执行相同的操作。但是这些类的第一个导入语句不起作用。

从reportlab.platypus导入ListFlowable,ListItem

此语句给出以下错误:

ImportError: 无法导入名称 ListFlowable

我如何使用这些类? 我正在使用 python 2.6,reportlab 2.5。

I am a newbie to python. I have to create an ordered list in my pdf document using Reportlab. I found these two classes ListFlowable(), ListItem() in the user-guide of Reportlab to do the same. But the very first import statement for these classes is not working.

from reportlab.platypus import ListFlowable, ListItem

This statement gives me the following error:

ImportError: cannot import name ListFlowable

How can I use these classes?
I am using python 2.6, reportlab 2.5.

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

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

发布评论

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

评论(1

像极了他 2024-12-01 01:56:24

在我安装的 ReportLab 2.5 中,此功能不可用。我在文档中看到它,但是搜索代码,没有 ListFlowable 或 ListItem 这样的东西。这可能仅在 ReportLab 的闭源部分中可用,而在开源部分中不可用。

不过,如果您需要创建列表,则可以使用迭代器变量和段落样式相当轻松地获得类似的结果。我一直都是这样做的。

In my install of ReportLab 2.5 this isn't available. I see it's there in the documentation, but searching through the code there is no such thing as a ListFlowable or ListItem. This might be something that's only available in the closed-source portion of ReportLab and not the open source.

If you need to make lists, though, you can fairly easily get similar results using iterator variables and paragraph styles. That's the way I've always done it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文