1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
# Azure Maps Search for Python
> see https://aka.ms/autorest
## Setup
```ps
npm install -g autorest
```
## Generation
```ps
cd <swagger-folder>
autorest SWAGGER.md
```
To generate this file, simply type
```ps
autorest swagger/README.md --python-sdks-folder=<location-of-your-sdk-dir>
```
We automatically hardcode in that this is `python`.
## Basic Information
```yaml
tag: package-2023-06
require: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/specification/maps/data-plane/Search/readme.md
output-folder: ../azure/maps/search/_generated
namespace: azure.maps.search
package-name: azure-maps-search
no-namespace-folders: true
license-header: MICROSOFT_MIT_NO_VERSION
credential-scopes: https://atlas.microsoft.com/.default
clear-output-folder: true
python: true
no-async: false
add-credential: false
title: MapsSearchClient
disable-async-iterators: true
python-sdks-folder: $(python-sdks-folder)
```
|