In the following python program I will use the metacopier_api (OpenCLI or PyPI) package to fetch all accounts of my MetaCopier project.
from metacopier_api.api.account_api_api import AccountAPIApi
from metacopier_api.api_client import ApiClient
from metacopier_api.configuration import Configuration
from metacopier_api.exceptions import ApiException
# Api Key from metacopier.io
apiKey = "YOUR_API_KEY"
configuration = Configuration(
host = "https://api.metacopier.io"
)
# Set api key for authorization
configuration.api_key['ApiKeyAuth'] = apiKey
# USe Api Client
with ApiClient(configuration) as api_client:
# Create an instance of the account API class
accountClient = AccountAPIApi(api_client)
try:
# Send request to fetch accounts
accounts = accountClient.get_accounts()
# Print response
print(accounts)
except ApiException as e:
print("Exception when calling AccountAPIApi: %s\n" % e)
Generate your own package
With the following command, you can generate your own package for the metacopier api:
Be sure that you have installed the OpenAPI Generator.
See Generation page for more information.