Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .chronus/changes/copilot-fix-3115-2025-6-1-3-6-11.md

This file was deleted.

8 changes: 0 additions & 8 deletions .chronus/changes/copilot-fix-3115-2025-7-01-02-45-12.md

This file was deleted.

4 changes: 4 additions & 0 deletions packages/autorest.python/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release

## 6.35.5

No changes, version bump only.

## 6.35.4

### Bump dependencies
Expand Down
4 changes: 2 additions & 2 deletions packages/autorest.python/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@autorest/python",
"version": "6.35.4",
"version": "6.35.5",
"description": "The Python extension for generators in AutoRest.",
"scripts": {
"start": "node ./scripts/run-python3.js ./scripts/start.py",
Expand Down Expand Up @@ -29,7 +29,7 @@
},
"homepage": "https://github.com/Azure/autorest.python/blob/main/README.md",
"dependencies": {
"@typespec/http-client-python": "0.13.0-dev.2",
"@typespec/http-client-python": "~0.12.5",
"@autorest/system-requirements": "~1.0.2",
"fs-extra": "~11.2.0",
"tsx": "~4.19.1"
Expand Down
7 changes: 7 additions & 0 deletions packages/typespec-python/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Release

## 0.45.5

### Features

- [#3116](https://github.com/Azure/autorest.python/pull/3116) [typespec-python] Add support for uv package manager alongside pip


## 0.45.4

### Bump dependencies
Expand Down
4 changes: 2 additions & 2 deletions packages/typespec-python/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@azure-tools/typespec-python",
"version": "0.45.4",
"version": "0.45.5",
"author": "Microsoft Corporation",
"description": "TypeSpec emitter for Python SDKs",
"homepage": "https://github.com/Azure/autorest.python",
Expand Down Expand Up @@ -67,7 +67,7 @@
"js-yaml": "~4.1.0",
"semver": "~7.6.2",
"tsx": "~4.19.1",
"@typespec/http-client-python": "0.13.0-dev.2",
"@typespec/http-client-python": "~0.12.5",
"fs-extra": "~11.2.0"
},
"devDependencies": {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Overview

This package is generated by `@typespec/http-client-python` with Typespec.

## Getting started

### Prequisites

- Python 3.9 or later is required to use this package.

### Install the package

Step into folder where setup.py is then run:

```bash
pip install -e .
```

### Examples

```python
>>> from authentication.apikey import ApiKeyClient
>>> from corehttp.exceptions import HttpResponseError

>>> client = ApiKeyClient(endpoint='<endpoint>')
>>> try:
<!-- write code here -->
except HttpResponseError as e:
print('service responds error: {}'.format(e.response.json()))
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Overview

This package is generated by `@typespec/http-client-python` with Typespec.

## Getting started

### Prequisites

- Python 3.9 or later is required to use this package.

### Install the package

Step into folder where setup.py is then run:

```bash
pip install -e .
```

### Examples

```python
>>> from authentication.http.custom import CustomClient
>>> from corehttp.exceptions import HttpResponseError

>>> client = CustomClient(endpoint='<endpoint>')
>>> try:
<!-- write code here -->
except HttpResponseError as e:
print('service responds error: {}'.format(e.response.json()))
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Overview

This package is generated by `@typespec/http-client-python` with Typespec.

## Getting started

### Prequisites

- Python 3.9 or later is required to use this package.

### Install the package

Step into folder where setup.py is then run:

```bash
pip install -e .
```

### Examples

```python
>>> from authentication.oauth2 import OAuth2Client
>>> from corehttp.exceptions import HttpResponseError

>>> client = OAuth2Client(endpoint='<endpoint>')
>>> try:
<!-- write code here -->
except HttpResponseError as e:
print('service responds error: {}'.format(e.response.json()))
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Overview

This package is generated by `@typespec/http-client-python` with Typespec.

## Getting started

### Prequisites

- Python 3.9 or later is required to use this package.

### Install the package

Step into folder where setup.py is then run:

```bash
pip install -e .
```

### Examples

```python
>>> from authentication.union import UnionClient
>>> from corehttp.exceptions import HttpResponseError

>>> client = UnionClient(endpoint='<endpoint>')
>>> try:
<!-- write code here -->
except HttpResponseError as e:
print('service responds error: {}'.format(e.response.json()))
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Overview

This package is generated by `@typespec/http-client-python` with Typespec.

## Getting started

### Prequisites

- Python 3.9 or later is required to use this package.

### Install the package

Step into folder where setup.py is then run:

```bash
pip install -e .
```

### Examples

```python
>>> from encode.bytes import BytesClient
>>> from corehttp.exceptions import HttpResponseError

>>> client = BytesClient(endpoint='<endpoint>')
>>> try:
<!-- write code here -->
except HttpResponseError as e:
print('service responds error: {}'.format(e.response.json()))
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Overview

This package is generated by `@typespec/http-client-python` with Typespec.

## Getting started

### Prequisites

- Python 3.9 or later is required to use this package.

### Install the package

Step into folder where setup.py is then run:

```bash
pip install -e .
```

### Examples

```python
>>> from encode.datetime import DatetimeClient
>>> from corehttp.exceptions import HttpResponseError

>>> client = DatetimeClient(endpoint='<endpoint>')
>>> try:
<!-- write code here -->
except HttpResponseError as e:
print('service responds error: {}'.format(e.response.json()))
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Overview

This package is generated by `@typespec/http-client-python` with Typespec.

## Getting started

### Prequisites

- Python 3.9 or later is required to use this package.

### Install the package

Step into folder where setup.py is then run:

```bash
pip install -e .
```

### Examples

```python
>>> from encode.duration import DurationClient
>>> from corehttp.exceptions import HttpResponseError

>>> client = DurationClient(endpoint='<endpoint>')
>>> try:
<!-- write code here -->
except HttpResponseError as e:
print('service responds error: {}'.format(e.response.json()))
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Overview

This package is generated by `@typespec/http-client-python` with Typespec.

## Getting started

### Prequisites

- Python 3.9 or later is required to use this package.

### Install the package

Step into folder where setup.py is then run:

```bash
pip install -e .
```

### Examples

```python
>>> from encode.numeric import NumericClient
>>> from corehttp.exceptions import HttpResponseError

>>> client = NumericClient(endpoint='<endpoint>')
>>> try:
<!-- write code here -->
except HttpResponseError as e:
print('service responds error: {}'.format(e.response.json()))
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Overview

This package is generated by `@typespec/http-client-python` with Typespec.

## Getting started

### Prequisites

- Python 3.9 or later is required to use this package.

### Install the package

Step into folder where setup.py is then run:

```bash
pip install -e .
```

### Examples

```python
>>> from headasbooleanfalse import VisibilityClient
>>> from corehttp.exceptions import HttpResponseError

>>> client = VisibilityClient(endpoint='<endpoint>')
>>> try:
<!-- write code here -->
except HttpResponseError as e:
print('service responds error: {}'.format(e.response.json()))
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Overview

This package is generated by `@typespec/http-client-python` with Typespec.

## Getting started

### Prequisites

- Python 3.9 or later is required to use this package.

### Install the package

Step into folder where setup.py is then run:

```bash
pip install -e .
```

### Examples

```python
>>> from headasbooleantrue import VisibilityClient
>>> from corehttp.exceptions import HttpResponseError

>>> client = VisibilityClient(endpoint='<endpoint>')
>>> try:
<!-- write code here -->
except HttpResponseError as e:
print('service responds error: {}'.format(e.response.json()))
```
Loading
Loading