首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

[D]python调用另一个程序的API有关问题

2012-08-11 
[D]python调用另一个程序的API问题我找到packagefortheweb这个程序的automation interface文档了,如下所述

[D]python调用另一个程序的API问题
我找到packagefortheweb这个程序的automation interface文档了,如下所述。

Using the Automation Interface

PackageForTheWeb has an automation interface. This interface exposes an object, PFWFile, whose properties and methods you can use to create and modify PackageForTheWeb projects programatically without using the PackageForTheWeb Wizard.

The methods that are implemented for the automation interface's PFWFile object are CreateNew, Open, and Save. The following table lists the properties of the PFWFile object, which correspond to the various controls in the PackageForTheWeb Wizard.

只告诉我有一个PFWFile类,类中有三个方法,还有一些属性,请问我怎么通过python调用这个类啊?
我不知道这个类存在哪里,一调用就会提示我:NameError: name 'PFWServer' is not defined
我的目的是通过调用这个类,操作这个类中的方法改变属性的值来达到使用python自动运行这个packagefortheweb程序的目的


---------------------
Double行动:
原帖分数:20
帖子加分:20

[解决办法]
找文档看看是不是需要import什么模块
上面的解释说,接口暴露了一个PFWFile对象给你,你可以CreateNew,Open和Save,对象的属性和方法你可以用来操作PackageForTheWeb项目
[解决办法]
估计是 COM 接口吧,用相应的方法操作即可

热点排行