Metered类
Metered类
提供设置计量密钥的方法。
Metered 类型公开以下成员:
构造函数
构造函数 | 描述 |
---|---|
init | 初始化此类的新实例。 |
方法
方法 | 描述 |
---|---|
set_metered_key | 设置计量公钥和私钥。 如果您购买了计量许可证,那么在开始应用时,应该调用这个API,通常情况下,这就足够了。 但如果始终无法上传消费数据且超过24小时,许可证将被设置为评估状态, 为了避免这种情况,您应该定期检查许可证状态,如果是评估状态,请再次拨打API。 |
get_consumption_quantity | 获取消费文件大小 |
get_consumption_credit | 获得消费信贷 |
get_product_name | 获取产品名称 |
is_metered_licensed | 检查计量是否有许可 |
例子
在此示例中,将尝试设置计量公钥和私钥
from aspose.cells import Metered
matered = Metered()
matered.set_metered_key("PublicKey", "PrivateKey")