Metered class

Metered class

Provides methods to set metered key.

Constructors

NameDescription
Metered()Initializes a new instance of this class.

Methods

NameDescription
get_consumption_credit()Gets consumption credit
get_consumption_quantity()Gets consumption file size
get_product_name()Returns Product name
is_metered_licensed()Check whether metered is licensed
set_metered_key(public_key, private_key)Sets metered public and private key. If you purchase metered license, when start application, this API should be called, normally, this is enough. However, if always fail to upload consumption data and exceed 24 hours, the license will be set to evaluation status, to avoid such case, you should regularly check the license status, if it is evaluation status, call this API again.

Examples

Shows how to activate a Metered license and track credit/consumption.

# Create a new Metered license, and then print its usage statistics.
metered = aw.Metered()
metered.set_metered_key('MyPublicKey', 'MyPrivateKey')
print('Credit before operation:', metered.get_consumption_credit())
print('Consumption quantity before operation:', metered.get_consumption_quantity())
# Operate using Aspose.Words, and then print our metered stats again to see how much we spent.
doc = aw.Document(MY_DIR + 'Document.docx')
doc.save(ARTIFACTS_DIR + 'Metered.usage.pdf')
# Aspose Metered Licensing mechanism does not send the usage data to purchase server every time,
# you need to use waiting.
time.sleep(10)
print('Credit after operation:', metered.get_consumption_credit())
print('Consumption quantity after operation:', metered.get_consumption_quantity())

See Also