# Azure DevCenter Service client library for Python
The Azure DevCenter package provides access to manage resources for Microsoft Dev Box and Azure Deployment Environments. This SDK enables managing developer machines and environments in Azure.
Use the package for Azure DevCenter to:
> Create, access, manage, and delete Dev Box resources
> Create, deploy, manage, and delete Environment resources
## Getting started
### Installing the package
```bash
python -m pip install azure-developer-devcenter
```
### Prerequisites
- Python 3.7 or later is required to use this package.
- You need an [Azure subscription][azure_sub] to use this package.
- For Dev Box operations you must have [configured](https://learn.microsoft.com/azure/dev-box/quickstart-configure-dev-box-service) a DevCenter, Project, Network Connection, Dev Box Definition, and Pool.
- For Deployment Environments operations you must have [configured](https://learn.microsoft.com/azure/deployment-environments/) a DevCenter, Project, Catalog, Environment Definition and Environment Type.
### Create Client with an Azure Active Directory Credential
In order to interact with the Dev Center service, you will need to create an instance of a client. An **endpoint** and **credential** are necessary to instantiate the client object.
For the endpoint use the Dev Center URI. It should have the format `https://{tenantId}-{devCenterName}.{devCenterRegion}.devcenter.azure.com`.
For the credential use an [Azure Active Directory (AAD) token credential][authenticate_with_token], providing an instance of the desired credential type obtained from the [azure-identity][azure_identity_credentials] library.
To authenticate with AAD, you must first install [azure-identity][azure_identity_pip] using [pip][pip]
```bash
pip install azure-identity
```
After setup, you can choose which type of [credential][azure_identity_credentials] from azure.identity to use.
As an example, [DefaultAzureCredential][default_azure_credential] can be used to authenticate the client:
Set the values of the client ID, tenant ID, and client secret of the AAD application as environment variables:
`AZURE_CLIENT_ID`, `AZURE_TENANT_ID`, `AZURE_CLIENT_SECRET`
Use the returned token credential to authenticate the client.
<!-- SNIPPET:create_client_sample.create_dev_center_client -->
```python
import os
from azure.developer.devcenter import DevCenterClient
from azure.identity import DefaultAzureCredential
# Set the values of the dev center endpoint, client ID, and client secret of the AAD application as environment variables:
# DEVCENTER_ENDPOINT, AZURE_TENANT_ID, AZURE_CLIENT_ID, AZURE_CLIENT_SECRET
try:
endpoint = os.environ["DEVCENTER_ENDPOINT"]
except KeyError:
raise ValueError("Missing environment variable 'DEVCENTER_ENDPOINT' - please set it before running the example")
# Build a client through AAD
client = DevCenterClient(endpoint, credential=DefaultAzureCredential())
```
<!-- END SNIPPET -->
With `DevCenterClient` you can execute operations in [Dev Center, Dev Box and Environments REST operations group](https://learn.microsoft.com/rest/api/devcenter/developer/operation-groups).
## Examples
* [Create, Connect and Delete a Dev Box](#create-connect-and-delete-a-dev-box)
* [Deploy and Delete an Environment](#deploy-and-delete-an-environment)
### Create, Connect and Delete a Dev Box
<!-- SNIPPET:dev_box_create_sample.dev_box_create_connect_delete -->
```python
import os
from azure.developer.devcenter import DevCenterClient
from azure.identity import DefaultAzureCredential
# Set the values of the dev center endpoint, client ID, and client secret of the AAD application as environment variables:
# DEVCENTER_ENDPOINT, AZURE_TENANT_ID, AZURE_CLIENT_ID, AZURE_CLIENT_SECRET
try:
endpoint = os.environ["DEVCENTER_ENDPOINT"]
except KeyError:
raise ValueError("Missing environment variable 'DEVCENTER_ENDPOINT' - please set it before running the example")
# Build a client through AAD
client = DevCenterClient(endpoint, credential=DefaultAzureCredential())
# List available Projects
projects = client.list_projects()
if projects:
print("\nList of projects: ")
for project in projects:
print(f"{project.name}")
# Select first project in the list
target_project_name = list(projects)[0].name
else:
raise ValueError("Missing Project - please create one before running the example")
# List available Pools
pools = client.list_pools(target_pool_name)
if pools:
print("\nList of pools: ")
for pool in pools:
print(f"{pool.name}")
# Select first pool in the list
target_pool_name = list(pools)[0].name
else:
raise ValueError("Missing Pool - please create one before running the example")
# Stand up a new Dev Box
print(f"\nStarting to create dev box in project {target_project_name} and pool {target_pool_name}")
dev_box_poller = client.begin_create_dev_box(
target_project_name, "me", "Test_DevBox", {"poolName": target_pool_name}
)
dev_box = dev_box_poller.result()
print(f"Provisioned dev box with status {dev_box.provisioning_state}.")
# Connect to the provisioned Dev Box
remote_connection = client.get_remote_connection(target_project_name, "me", dev_box.name)
print(f"Connect to the dev box using web URL {remote_connection.web_url}")
# Tear down the Dev Box when finished
print(f"Starting to delete dev box.")
delete_poller = client.begin_delete_dev_box(target_project_name, "me", "Test_DevBox")
delete_result = delete_poller.result()
print(f"Completed deletion for the dev box with status {delete_result.status}")
```
<!-- END SNIPPET -->
### Deploy and Delete an Environment
<!-- SNIPPET:deployment_environments_sample.environment_create_and_delete -->
```python
import os
from azure.developer.devcenter import DevCenterClient
from azure.identity import DefaultAzureCredential
# Set the values of the dev center endpoint, client ID, and client secret of the AAD application as environment variables:
# DEVCENTER_ENDPOINT, AZURE_TENANT_ID, AZURE_CLIENT_ID, AZURE_CLIENT_SECRET
try:
endpoint = os.environ["DEVCENTER_ENDPOINT"]
except KeyError:
raise ValueError("Missing environment variable 'DEVCENTER_ENDPOINT' - please set it before running the example")
# Build a client through AAD
client = DevCenterClient(endpoint, credential=DefaultAzureCredential())
# List available Projects
projects = client.list_projects()
if projects:
print("\nList of projects: ")
for project in projects:
print(f"{project.name}")
# Select first project in the list
target_project_name = list(projects)[0].name
else:
raise ValueError("Missing Project - please create one before running the example")
# List available Catalogs
catalogs = client.list_catalogs(target_project_name)
if catalogs:
print("\nList of catalogs: ")
for catalog in catalogs:
print(f"{catalog.name}")
# Select first catalog in the list
target_catalog_name = list(catalogs)[0].name
else:
raise ValueError("Missing Catalog - please create one before running the example")
# List available Environment Definitions
environment_definitions = client.list_environment_definitions_by_catalog(target_project_name, target_catalog_name)
if environment_definitions:
print("\nList of environment definitions: ")
for environment_definition in environment_definitions:
print(f"{environment_definition.name}")
# Select first environment definition in the list
target_environment_definition_name = list(environment_definitions)[0].name
else:
raise ValueError("Missing Environment Definition - please create one before running the example")
# List available Environment Types
environment_types = client.list_environment_types(target_project_name)
if environment_types:
print("\nList of environment types: ")
for environment_type in environment_types:
print(f"{environment_type.name}")
# Select first environment type in the list
target_environment_type_name = list(environment_types)[0].name
else:
raise ValueError("Missing Environment Type - please create one before running the example")
print(
f"\nStarting to create environment in project {target_project_name} with catalog {target_catalog_name}, environment definition {target_environment_definition_name}, and environment type {target_environment_type_name}."
)
# Stand up a new environment
environment_name = "MyDevEnv"
environment = {
"environmentType": target_environment_type_name,
"catalogName": target_catalog_name,
"environmentDefinitionName": target_environment_definition_name,
}
environment_poller = client.begin_create_or_update_environment(
target_project_name, "me", environment_name, environment
)
environment_result = environment_poller.result()
print(f"Provisioned environment with status {environment_result.provisioning_state}.")
# Tear down the environment when finished
print(f"Starting to delete environment.")
delete_poller = client.begin_delete_environment(target_project_name, "me", environment_name)
delete_result = delete_poller.result()
print(f"Completed deletion for the environment with status {delete_result.status}")
```
<!-- END SNIPPET -->
## Key concepts
Dev Boxes refer to managed developer machines running in Azure. Dev Boxes are provisioned in Pools, which define the network and image used for a Dev Box.
Environments refer to templated developer environments, which combine a template (Catalog Item) and parameters.
## Troubleshooting
Errors can occur during initial requests and long-running operations, and will provide information about how to resolve the error.
Be sure to confirm that dependent resources, such as pools and catalogs, are set up properly and are in a healthy state. You will not be able to create resources with the package when your dependent resources are in a failed state.
## Next steps
Get started by exploring our [samples][samples_folder] and starting to use the package!
## Contributing
This project welcomes contributions and suggestions. Most contributions require
you to agree to a Contributor License Agreement (CLA) declaring that you have
the right to, and actually do, grant us the rights to use your contribution.
For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether
you need to provide a CLA and decorate the PR appropriately (e.g., label,
comment). Simply follow the instructions provided by the bot. You will only
need to do this once across all repos using our CLA.
This project has adopted the
[Microsoft Open Source Code of Conduct][code_of_conduct]. For more information,
see the Code of Conduct FAQ or contact opencode@microsoft.com with any
additional questions or comments.
<!-- LINKS -->
[code_of_conduct]: https://opensource.microsoft.com/codeofconduct/
[authenticate_with_token]: https://docs.microsoft.com/azure/cognitive-services/authentication?tabs=powershell#authenticate-with-an-authentication-token
[azure_identity_credentials]: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/identity/azure-identity#credentials
[azure_identity_pip]: https://pypi.org/project/azure-identity/
[default_azure_credential]: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/identity/azure-identity#defaultazurecredential
[pip]: https://pypi.org/project/pip/
[azure_sub]: https://azure.microsoft.com/free/
[samples_folder]: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/devcenter/azure-developer-devcenter/samples
Raw data
{
"_id": null,
"home_page": "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk",
"name": "azure-developer-devcenter",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "azure, azure sdk",
"author": "Microsoft Corporation",
"author_email": "azpysdkhelp@microsoft.com",
"download_url": "https://files.pythonhosted.org/packages/98/dc/c5995fe9c01ce5d3565c0dc49b9e96e029b8bb68eade583e8bfd1b129bc1/azure-developer-devcenter-1.0.0.tar.gz",
"platform": null,
"description": "\n# Azure DevCenter Service client library for Python\nThe Azure DevCenter package provides access to manage resources for Microsoft Dev Box and Azure Deployment Environments. This SDK enables managing developer machines and environments in Azure.\n\nUse the package for Azure DevCenter to:\n> Create, access, manage, and delete Dev Box resources\n> Create, deploy, manage, and delete Environment resources\n\n## Getting started\n\n### Installing the package\n\n```bash\npython -m pip install azure-developer-devcenter\n```\n\n### Prerequisites\n\n- Python 3.7 or later is required to use this package.\n- You need an [Azure subscription][azure_sub] to use this package.\n- For Dev Box operations you must have [configured](https://learn.microsoft.com/azure/dev-box/quickstart-configure-dev-box-service) a DevCenter, Project, Network Connection, Dev Box Definition, and Pool.\n- For Deployment Environments operations you must have [configured](https://learn.microsoft.com/azure/deployment-environments/) a DevCenter, Project, Catalog, Environment Definition and Environment Type.\n\n### Create Client with an Azure Active Directory Credential\n\nIn order to interact with the Dev Center service, you will need to create an instance of a client. An **endpoint** and **credential** are necessary to instantiate the client object.\n\nFor the endpoint use the Dev Center URI. It should have the format `https://{tenantId}-{devCenterName}.{devCenterRegion}.devcenter.azure.com`.\n\nFor the credential use an [Azure Active Directory (AAD) token credential][authenticate_with_token], providing an instance of the desired credential type obtained from the [azure-identity][azure_identity_credentials] library.\n\nTo authenticate with AAD, you must first install [azure-identity][azure_identity_pip] using [pip][pip]\n\n```bash\npip install azure-identity\n```\n\nAfter setup, you can choose which type of [credential][azure_identity_credentials] from azure.identity to use.\n\nAs an example, [DefaultAzureCredential][default_azure_credential] can be used to authenticate the client:\nSet the values of the client ID, tenant ID, and client secret of the AAD application as environment variables:\n`AZURE_CLIENT_ID`, `AZURE_TENANT_ID`, `AZURE_CLIENT_SECRET`\n\nUse the returned token credential to authenticate the client.\n\n<!-- SNIPPET:create_client_sample.create_dev_center_client -->\n\n```python\nimport os\n\nfrom azure.developer.devcenter import DevCenterClient\nfrom azure.identity import DefaultAzureCredential\n\n# Set the values of the dev center endpoint, client ID, and client secret of the AAD application as environment variables:\n# DEVCENTER_ENDPOINT, AZURE_TENANT_ID, AZURE_CLIENT_ID, AZURE_CLIENT_SECRET\ntry:\n endpoint = os.environ[\"DEVCENTER_ENDPOINT\"]\nexcept KeyError:\n raise ValueError(\"Missing environment variable 'DEVCENTER_ENDPOINT' - please set it before running the example\")\n\n# Build a client through AAD\nclient = DevCenterClient(endpoint, credential=DefaultAzureCredential())\n```\n\n<!-- END SNIPPET -->\n\nWith `DevCenterClient` you can execute operations in [Dev Center, Dev Box and Environments REST operations group](https://learn.microsoft.com/rest/api/devcenter/developer/operation-groups).\n\n## Examples\n* [Create, Connect and Delete a Dev Box](#create-connect-and-delete-a-dev-box)\n* [Deploy and Delete an Environment](#deploy-and-delete-an-environment)\n\n### Create, Connect and Delete a Dev Box\n\n<!-- SNIPPET:dev_box_create_sample.dev_box_create_connect_delete -->\n\n```python\nimport os\n\nfrom azure.developer.devcenter import DevCenterClient\nfrom azure.identity import DefaultAzureCredential\n\n# Set the values of the dev center endpoint, client ID, and client secret of the AAD application as environment variables:\n# DEVCENTER_ENDPOINT, AZURE_TENANT_ID, AZURE_CLIENT_ID, AZURE_CLIENT_SECRET\ntry:\n endpoint = os.environ[\"DEVCENTER_ENDPOINT\"]\nexcept KeyError:\n raise ValueError(\"Missing environment variable 'DEVCENTER_ENDPOINT' - please set it before running the example\")\n\n# Build a client through AAD\nclient = DevCenterClient(endpoint, credential=DefaultAzureCredential())\n\n# List available Projects\nprojects = client.list_projects()\nif projects:\n print(\"\\nList of projects: \")\n for project in projects:\n print(f\"{project.name}\")\n\n # Select first project in the list\n target_project_name = list(projects)[0].name\nelse:\n raise ValueError(\"Missing Project - please create one before running the example\")\n\n# List available Pools\npools = client.list_pools(target_pool_name)\nif pools:\n print(\"\\nList of pools: \")\n for pool in pools:\n print(f\"{pool.name}\")\n\n # Select first pool in the list\n target_pool_name = list(pools)[0].name\nelse:\n raise ValueError(\"Missing Pool - please create one before running the example\")\n\n# Stand up a new Dev Box\nprint(f\"\\nStarting to create dev box in project {target_project_name} and pool {target_pool_name}\")\n\ndev_box_poller = client.begin_create_dev_box(\n target_project_name, \"me\", \"Test_DevBox\", {\"poolName\": target_pool_name}\n)\ndev_box = dev_box_poller.result()\nprint(f\"Provisioned dev box with status {dev_box.provisioning_state}.\")\n\n# Connect to the provisioned Dev Box\nremote_connection = client.get_remote_connection(target_project_name, \"me\", dev_box.name)\nprint(f\"Connect to the dev box using web URL {remote_connection.web_url}\")\n\n# Tear down the Dev Box when finished\nprint(f\"Starting to delete dev box.\")\n\ndelete_poller = client.begin_delete_dev_box(target_project_name, \"me\", \"Test_DevBox\")\ndelete_result = delete_poller.result()\nprint(f\"Completed deletion for the dev box with status {delete_result.status}\")\n```\n\n<!-- END SNIPPET -->\n\n### Deploy and Delete an Environment\n\n<!-- SNIPPET:deployment_environments_sample.environment_create_and_delete -->\n\n```python\nimport os\n\nfrom azure.developer.devcenter import DevCenterClient\nfrom azure.identity import DefaultAzureCredential\n\n# Set the values of the dev center endpoint, client ID, and client secret of the AAD application as environment variables:\n# DEVCENTER_ENDPOINT, AZURE_TENANT_ID, AZURE_CLIENT_ID, AZURE_CLIENT_SECRET\ntry:\n endpoint = os.environ[\"DEVCENTER_ENDPOINT\"]\nexcept KeyError:\n raise ValueError(\"Missing environment variable 'DEVCENTER_ENDPOINT' - please set it before running the example\")\n\n# Build a client through AAD\nclient = DevCenterClient(endpoint, credential=DefaultAzureCredential())\n\n# List available Projects\nprojects = client.list_projects()\nif projects:\n print(\"\\nList of projects: \")\n for project in projects:\n print(f\"{project.name}\")\n\n # Select first project in the list\n target_project_name = list(projects)[0].name\nelse:\n raise ValueError(\"Missing Project - please create one before running the example\")\n\n# List available Catalogs\ncatalogs = client.list_catalogs(target_project_name)\nif catalogs:\n print(\"\\nList of catalogs: \")\n for catalog in catalogs:\n print(f\"{catalog.name}\")\n\n # Select first catalog in the list\n target_catalog_name = list(catalogs)[0].name\nelse:\n raise ValueError(\"Missing Catalog - please create one before running the example\")\n\n# List available Environment Definitions\nenvironment_definitions = client.list_environment_definitions_by_catalog(target_project_name, target_catalog_name)\nif environment_definitions:\n print(\"\\nList of environment definitions: \")\n for environment_definition in environment_definitions:\n print(f\"{environment_definition.name}\")\n\n # Select first environment definition in the list\n target_environment_definition_name = list(environment_definitions)[0].name\nelse:\n raise ValueError(\"Missing Environment Definition - please create one before running the example\")\n\n# List available Environment Types\nenvironment_types = client.list_environment_types(target_project_name)\nif environment_types:\n print(\"\\nList of environment types: \")\n for environment_type in environment_types:\n print(f\"{environment_type.name}\")\n\n # Select first environment type in the list\n target_environment_type_name = list(environment_types)[0].name\nelse:\n raise ValueError(\"Missing Environment Type - please create one before running the example\")\n\nprint(\n f\"\\nStarting to create environment in project {target_project_name} with catalog {target_catalog_name}, environment definition {target_environment_definition_name}, and environment type {target_environment_type_name}.\"\n)\n\n# Stand up a new environment\nenvironment_name = \"MyDevEnv\"\nenvironment = {\n \"environmentType\": target_environment_type_name,\n \"catalogName\": target_catalog_name,\n \"environmentDefinitionName\": target_environment_definition_name,\n}\n\nenvironment_poller = client.begin_create_or_update_environment(\n target_project_name, \"me\", environment_name, environment\n)\nenvironment_result = environment_poller.result()\nprint(f\"Provisioned environment with status {environment_result.provisioning_state}.\")\n\n# Tear down the environment when finished\nprint(f\"Starting to delete environment.\")\ndelete_poller = client.begin_delete_environment(target_project_name, \"me\", environment_name)\ndelete_result = delete_poller.result()\nprint(f\"Completed deletion for the environment with status {delete_result.status}\")\n```\n\n<!-- END SNIPPET -->\n\n## Key concepts\nDev Boxes refer to managed developer machines running in Azure. Dev Boxes are provisioned in Pools, which define the network and image used for a Dev Box.\n\nEnvironments refer to templated developer environments, which combine a template (Catalog Item) and parameters.\n\n## Troubleshooting\nErrors can occur during initial requests and long-running operations, and will provide information about how to resolve the error. \nBe sure to confirm that dependent resources, such as pools and catalogs, are set up properly and are in a healthy state. You will not be able to create resources with the package when your dependent resources are in a failed state.\n\n## Next steps\nGet started by exploring our [samples][samples_folder] and starting to use the package!\n\n## Contributing\n\nThis project welcomes contributions and suggestions. Most contributions require\nyou to agree to a Contributor License Agreement (CLA) declaring that you have\nthe right to, and actually do, grant us the rights to use your contribution.\nFor details, visit https://cla.microsoft.com.\n\nWhen you submit a pull request, a CLA-bot will automatically determine whether\nyou need to provide a CLA and decorate the PR appropriately (e.g., label,\ncomment). Simply follow the instructions provided by the bot. You will only\nneed to do this once across all repos using our CLA.\n\nThis project has adopted the\n[Microsoft Open Source Code of Conduct][code_of_conduct]. For more information,\nsee the Code of Conduct FAQ or contact opencode@microsoft.com with any\nadditional questions or comments.\n\n<!-- LINKS -->\n[code_of_conduct]: https://opensource.microsoft.com/codeofconduct/\n[authenticate_with_token]: https://docs.microsoft.com/azure/cognitive-services/authentication?tabs=powershell#authenticate-with-an-authentication-token\n[azure_identity_credentials]: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/identity/azure-identity#credentials\n[azure_identity_pip]: https://pypi.org/project/azure-identity/\n[default_azure_credential]: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/identity/azure-identity#defaultazurecredential\n[pip]: https://pypi.org/project/pip/\n[azure_sub]: https://azure.microsoft.com/free/\n[samples_folder]: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/devcenter/azure-developer-devcenter/samples\n",
"bugtrack_url": null,
"license": "MIT License",
"summary": "Microsoft Azure Developer Devcenter Client Library for Python",
"version": "1.0.0",
"project_urls": {
"Homepage": "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk"
},
"split_keywords": [
"azure",
" azure sdk"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "8b89976ff1d6da35d6be1a042aa801cdb2596c5d1a7251658656c69d2f2524f4",
"md5": "4c4637b7e49fb18795985ae581f923f1",
"sha256": "77f2913662e358e6e6aaaf194bbda5921f0e5a9015a0f719b251696c4bb3b9b2"
},
"downloads": -1,
"filename": "azure_developer_devcenter-1.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "4c4637b7e49fb18795985ae581f923f1",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 83596,
"upload_time": "2024-06-14T06:48:24",
"upload_time_iso_8601": "2024-06-14T06:48:24.040579Z",
"url": "https://files.pythonhosted.org/packages/8b/89/976ff1d6da35d6be1a042aa801cdb2596c5d1a7251658656c69d2f2524f4/azure_developer_devcenter-1.0.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "98dcc5995fe9c01ce5d3565c0dc49b9e96e029b8bb68eade583e8bfd1b129bc1",
"md5": "a16f39137ff6152291f906476d49776e",
"sha256": "f959af86435ce78203226097fbb75b8c2b14cbd60d28767b43d458ccb09e15d0"
},
"downloads": -1,
"filename": "azure-developer-devcenter-1.0.0.tar.gz",
"has_sig": false,
"md5_digest": "a16f39137ff6152291f906476d49776e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 86058,
"upload_time": "2024-06-14T06:48:22",
"upload_time_iso_8601": "2024-06-14T06:48:22.173326Z",
"url": "https://files.pythonhosted.org/packages/98/dc/c5995fe9c01ce5d3565c0dc49b9e96e029b8bb68eade583e8bfd1b129bc1/azure-developer-devcenter-1.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-06-14 06:48:22",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Azure",
"github_project": "azure-sdk-for-python",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"lcname": "azure-developer-devcenter"
}