Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/speakeasy-sdks/test-repo

A python SDK for accessing the scorecard-test API.
https://github.com/speakeasy-sdks/test-repo

Last synced: 1 day ago
JSON representation

A python SDK for accessing the scorecard-test API.

Awesome Lists containing this project

README

        

# scorecard-test





## SDK Installation

```bash
pip install git+https://github.com/speakeasy-sdks/test-repo.git
```

## SDK Example Usage

### Example

```python
import scorecard_test
from scorecard_test.models import shared

s = scorecard_test.ScorecardTest()

req = shared.Pet(
id=596804,
name='',
)

res = s.pets.create_pets(req)

if res is not None:
# handle response
pass

```

## Available Resources and Operations

### [pets](docs/sdks/pets/README.md)

* [create_pets](docs/sdks/pets/README.md#create_pets) - Create a pet
* [list_pets](docs/sdks/pets/README.md#list_pets) - List all pets
* [show_pet_by_id](docs/sdks/pets/README.md#show_pet_by_id) - Info for a specific pet

## Error Handling

Handling errors in this SDK should largely match your expectations. All operations return a response object or raise an error. If Error objects are specified in your OpenAPI Spec, the SDK will raise the appropriate Error type.

| Error Object | Status Code | Content Type |
| --------------- | --------------- | --------------- |
| errors.SDKError | 4x-5xx | */* |

### Example

```python
import scorecard_test
from scorecard_test.models import errors, shared

s = scorecard_test.ScorecardTest()

req = shared.Pet(
id=596804,
name='',
)

res = None
try:
res = s.pets.create_pets(req)
except errors.SDKError as e:
# handle exception
raise(e)

if res is not None:
# handle response
pass

```

## Server Selection

### Select Server by Index

You can override the default server globally by passing a server index to the `server_idx: int` optional parameter when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the indexes associated with the available servers:

| # | Server | Variables |
| - | ------ | --------- |
| 0 | `http://petstore.swagger.io/v1` | None |

#### Example

```python
import scorecard_test
from scorecard_test.models import shared

s = scorecard_test.ScorecardTest(
server_idx=0,
)

req = shared.Pet(
id=596804,
name='',
)

res = s.pets.create_pets(req)

if res is not None:
# handle response
pass

```

### Override Server URL Per-Client

The default server can also be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:
```python
import scorecard_test
from scorecard_test.models import shared

s = scorecard_test.ScorecardTest(
server_url="http://petstore.swagger.io/v1",
)

req = shared.Pet(
id=596804,
name='',
)

res = s.pets.create_pets(req)

if res is not None:
# handle response
pass

```

## Custom HTTP Client

The Python SDK makes API calls using the [requests](https://pypi.org/project/requests/) HTTP library. In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with a custom `requests.Session` object.

For example, you could specify a header for every request that this sdk makes as follows:
```python
import scorecard_test
import requests

http_client = requests.Session()
http_client.headers.update({'x-custom-header': 'someValue'})
s = scorecard_test.ScorecardTest(client: http_client)
```

# Development

## Maturity

This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage
to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally
looking for the latest version.

## Contributions

While we value open-source contributions to this SDK, this library is generated programmatically.
Feel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release!

### SDK Created by [Speakeasy](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks)