SDKs
Python SDK
API Client Usage Examples
33min
Python
|
import licensespring licensespring.app_version = "MyApp 1.0.0"
Python
|
from licensespring.api import APIClient api_client = APIClient(api_key="_your_api_key_", shared_key="_your_shared_key_")
Python
|
product = "lkprod1" license_key = "GPB7-279T-6MNK-CQLK" license_data = api_client.activate_license(product=product, license_key=license_key) print(license_data)
Python
|
product = "uprod1" username = "user1@email.com" password = "nq64k1!@" license_data = api_client.activate_license( product=product, username=username, password=password ) print(license_data)
Python
|
product = "lkprod1" license_key = "GPUB-J4PH-CGNK-C7LK" is_deactivated = api_client.deactivate_license(product=product, license_key=license_key) print(is_deactivated)
Python
|
product = "uprod1" username = "user1@email.com" password = "nq64k1!@" license_data = api_client.deactivate_license( product=product, username=username, password=password ) print(license_data)
Python
|
product = "lkprod1" license_key = "GPBQ-DZCP-E9SK-CQLK" license_data = api_client.check_license(product=product, license_key=license_key) print(license_data)
Python
|
product = "uprod1" username = "user2@email.com" password = "1l48y#!b" license_data = api_client.check_license(product=product, username=username) print(license_data)
Python
|
product = "lkprod1" license_key = "GPSU-QTKQ-HSSK-C9LK" # Add 1 consumption consumption_data = api_client.add_consumption( product=product, license_key=license_key ) # Add 3 consumptions consumption_data = api_client.add_consumption( product=product, license_key=license_key, consumptions=3 ) # Add 1 consumption, allow overages and define max overages consumption_data = api_client.add_consumption( product=product, license_key=license_key, allow_overages=True, max_overages=10 ) print(consumption_data)
Python
|
product = "lkprod1" license_key = "GPTJ-LSYZ-USEK-C8LK" feature = "lkprod1cf1" # Add 1 consumption feature_consumption_data = api_client.add_feature_consumption( product=product, license_key=license_key, feature=feature ) # Add 3 consumptions feature_consumption_data = api_client.add_feature_consumption( product=product, license_key=license_key, feature=feature, consumptions=3 ) print(feature_consumption_data)
Python
|
product = "lkprod2" trial_license_data = api_client.trial_key(product=product) print(trial_license_data)
Python
|
product = "lkprod1" product_data = api_client.product_details(product=product) print(product_data)
Python
|
product = "lkprod1" license_key = "GPUB-SZF9-AB2K-C7LK" variables = {"variable_1_key": "variable_1_value", "variable_2_key": "variable_2_value"} is_tracked = api_client.track_device_variables(product=product, license_key=license_key, variables=variables) print(is_tracked)
Python
|
product = "lkprod1" license_key = "GPUB-SZF9-AB2K-C7LK" device_variables = api_client.get_device_variables(product=product, license_key=license_key) print(device_variables)
Python
|
product = "lkprod1" license_key = "GPUC-NGWU-3NJK-C7LK" # Borrow for 2 hours borrowed_until = (datetime.utcnow() + timedelta(hours=2)).isoformat() floating_borrow_data = api_client.floating_borrow(product=product, license_key=license_key, borrowed_until=borrowed_until) print(floating_borrow_data)
Python
|
product = "lkprod1" license_key = "GPUC-NGWU-3NJK-C7LK" is_released = api_client.floating_release(product=product, license_key=license_key) print(is_released)
Python
|
username = "user4@email.com" password = "_old_password_" new_password = "_new_password_" is_password_changed = api_client.change_password(username=username, password=password, new_password=new_password) print(is_password_changed)
Python
|
product = "lkprod1" license_key = "GPB7-279T-6MNK-CQLK" # Get versions for all environments versions_data = api_client.versions(product=product, license_key=license_key) # Get versions for mac environment mac_versions_data = api_client.versions( product=product, license_key=license_key, env="mac" ) print(versions_data)
Python
|
product = "lkprod1" license_key = "GPB7-279T-6MNK-CQLK" # Get the latest installation file installation_file_data = api_client.installation_file( product=product, license_key=license_key ) # Get the latest installation file for linux environment installation_file_data = api_client.installation_file( product=product, license_key=license_key, env="linux" ) # Get the latest installation file for version 1.0.0 installation_file_data = api_client.installation_file( product=product, license_key=license_key, version="1.0.0" ) print(installation_file_data)
Python
|
product = "uprod1" customer = 'c1@c.com' customer_license_users_data = api_client.customer_license_users( product=product, customer=customer ) print(customer_license_users_data)
Python
|
product = "uprod1" customer_account_code = "ccorp" sso_url_data = api_client.sso_url( product=product, customer_account_code=customer_account_code ) print(sso_url_data)
Python
|
product = "uprod1" customer_account_code = "ccorp" sso_url_data = api_client.sso_url( product=product, customer_account_code=customer_account_code, response_type="code", ) print(sso_url_data)
Python
|
product = "lkprod1" license_key = "GPY7-VHX9-MDSK-C3LK" # Generate data for offline activation activate_offline_data = api_client.activate_offline_dump( product=product, license_key=license_key ) # Write to file with open('activate_offline.req', mode='w') as f: print(activate_offline_data, file=f) # Activate offline license_data = api_client.activate_offline(data=activate_offline_data) print(license_data)
Python
|
# Read from file with open('./ls_activation.lic') as file: ls_activation_data = file.read() license_data = api_client.activate_offline_load(ls_activation_data) print(license_data)
Python
|
product = "lkprod1" license_key = "GPYC-X5J2-L5SK-C3LK" # Generate data for offline deactivation deactivate_offline_data = api_client.deactivate_offline_dump( product=product, license_key=license_key ) # Write to file with open('deactivate_offline.req', mode='w') as f: print(deactivate_offline_data, file=f) # Deactivate offline is_deactivated = api_client.deactivate_offline(data=deactivate_offline_data) print(is_deactivated)



Updated 05 Sep 2023
Did this page help you?