diff --git a/.github/workflows/publish-pypi.yml b/.github/workflows/publish-pypi.yml new file mode 100644 index 0000000..36835e1 --- /dev/null +++ b/.github/workflows/publish-pypi.yml @@ -0,0 +1,29 @@ +# This workflow is triggered when a GitHub release is created. +# It can also be run manually to re-publish to PyPI in case it failed for some reason. +# You can run this workflow by navigating to https://www.github.com/evermemos/everos-python/actions/workflows/publish-pypi.yml +name: Publish PyPI +on: + workflow_dispatch: + + release: + types: [published] + +jobs: + publish: + name: publish + runs-on: ubuntu-latest + permissions: + contents: read + id-token: write + + steps: + - uses: actions/checkout@v6 + + - name: Install uv + uses: astral-sh/setup-uv@v5 + with: + version: '0.9.13' + + - name: Publish to PyPI + run: | + bash ./bin/publish-pypi diff --git a/.github/workflows/release-doctor.yml b/.github/workflows/release-doctor.yml new file mode 100644 index 0000000..ed8b59c --- /dev/null +++ b/.github/workflows/release-doctor.yml @@ -0,0 +1,19 @@ +name: Release Doctor +on: + pull_request: + branches: + - main + workflow_dispatch: + +jobs: + release_doctor: + name: release doctor + runs-on: ubuntu-latest + if: github.repository == 'evermemos/everos-python' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next') + + steps: + - uses: actions/checkout@v6 + + - name: Check release environment + run: | + bash ./bin/check-release-environment diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 0000000..c7159c1 --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,3 @@ +{ + ".": "0.0.2" +} \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 8436c4c..4dc183b 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 19 openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/evermind%2Feveros-85b37aa2a2bf87c039a27e33652dcfcab2b64f5e90a058e7c4a49b12a8094e02.yml openapi_spec_hash: 31f3985c07b07d8c3bd06e0622fd575e -config_hash: 84baf6907e3a9656a44d5b33009499b6 +config_hash: 973539bf905a8a047d5838c0265a00f0 diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..3f15e25 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,11 @@ +# Changelog + +## 0.0.2 (2026-04-01) + +Full Changelog: [v0.0.1...v0.0.2](https://github.com/evermemos/everos-python/compare/v0.0.1...v0.0.2) + +### Chores + +* update SDK settings ([68703ac](https://github.com/evermemos/everos-python/commit/68703ac328d743e307d9dfd30bd7b52b8d894dba)) +* update SDK settings ([bdb213a](https://github.com/evermemos/everos-python/commit/bdb213a592f0665a038128b222b6ccdc882a29fd)) +* update SDK settings ([5c4bbb3](https://github.com/evermemos/everos-python/commit/5c4bbb3c610ae5bda82cb23c40861d0071066e4b)) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9566391..67c907c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -62,7 +62,7 @@ If you’d like to use the repository from source, you can either install from g To install via git: ```sh -$ pip install git+ssh://git@github.com/stainless-sdks/everos-python.git +$ pip install git+ssh://git@github.com/evermemos/everos-python.git ``` Alternatively, you can build from source and install the wheel file: @@ -113,7 +113,7 @@ the changes aren't made through the automated pipeline, you may want to make rel ### Publish with a GitHub workflow -You can release to package managers by using [the `Publish PyPI` GitHub action](https://www.github.com/stainless-sdks/everos-python/actions/workflows/publish-pypi.yml). This requires a setup organization or repository secret to be set up. +You can release to package managers by using [the `Publish PyPI` GitHub action](https://www.github.com/evermemos/everos-python/actions/workflows/publish-pypi.yml). This requires a setup organization or repository secret to be set up. ### Publish manually diff --git a/README.md b/README.md index 07cc638..be1bd4b 100644 --- a/README.md +++ b/README.md @@ -16,13 +16,10 @@ The full API of this library can be found in [api.md](api.md). ## Installation ```sh -# install from this staging repo -pip install git+ssh://git@github.com/stainless-sdks/everos-python.git +# install from PyPI +pip install everos ``` -> [!NOTE] -> Once this package is [published to PyPI](https://www.stainless.com/docs/guides/publish), this will become: `pip install everos` - ## Usage The full API of this library can be found in [api.md](api.md). @@ -97,8 +94,8 @@ By default, the async client uses `httpx` for HTTP requests. However, for improv You can enable this by installing `aiohttp`: ```sh -# install from this staging repo -pip install 'everos[aiohttp] @ git+ssh://git@github.com/stainless-sdks/everos-python.git' +# install from PyPI +pip install everos[aiohttp] ``` Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`: @@ -319,9 +316,9 @@ memory = response.parse() # get the object that `v1.memories.create()` would ha print(memory.data) ``` -These methods return an [`APIResponse`](https://github.com/stainless-sdks/everos-python/tree/main/src/everos/_response.py) object. +These methods return an [`APIResponse`](https://github.com/evermemos/everos-python/tree/main/src/everos/_response.py) object. -The async client returns an [`AsyncAPIResponse`](https://github.com/stainless-sdks/everos-python/tree/main/src/everos/_response.py) with the same structure, the only difference being `await`able methods for reading the response content. +The async client returns an [`AsyncAPIResponse`](https://github.com/evermemos/everos-python/tree/main/src/everos/_response.py) with the same structure, the only difference being `await`able methods for reading the response content. #### `.with_streaming_response` @@ -434,7 +431,7 @@ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) con We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience. -We are keen for your feedback; please open an [issue](https://www.github.com/stainless-sdks/everos-python/issues) with questions, bugs, or suggestions. +We are keen for your feedback; please open an [issue](https://www.github.com/evermemos/everos-python/issues) with questions, bugs, or suggestions. ### Determining the installed version diff --git a/bin/check-release-environment b/bin/check-release-environment new file mode 100644 index 0000000..1e951e9 --- /dev/null +++ b/bin/check-release-environment @@ -0,0 +1,17 @@ +#!/usr/bin/env bash + +errors=() + +lenErrors=${#errors[@]} + +if [[ lenErrors -gt 0 ]]; then + echo -e "Found the following errors in the release environment:\n" + + for error in "${errors[@]}"; do + echo -e "- $error\n" + done + + exit 1 +fi + +echo "The environment is ready to push releases!" diff --git a/bin/publish-pypi b/bin/publish-pypi index e72ca2f..5895700 100644 --- a/bin/publish-pypi +++ b/bin/publish-pypi @@ -4,4 +4,8 @@ set -eux rm -rf dist mkdir -p dist uv build -uv publish --token=$PYPI_TOKEN +if [ -n "${PYPI_TOKEN:-}" ]; then + uv publish --token=$PYPI_TOKEN +else + uv publish +fi diff --git a/pyproject.toml b/pyproject.toml index 4344d11..6205708 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "everos" -version = "0.0.1" +version = "0.0.2" description = "The official Python library for the everos API" dynamic = ["readme"] license = "Apache-2.0" @@ -37,8 +37,8 @@ classifiers = [ ] [project.urls] -Homepage = "https://github.com/stainless-sdks/everos-python" -Repository = "https://github.com/stainless-sdks/everos-python" +Homepage = "https://github.com/evermemos/everos-python" +Repository = "https://github.com/evermemos/everos-python" [project.optional-dependencies] aiohttp = ["aiohttp", "httpx_aiohttp>=0.1.9"] @@ -112,7 +112,7 @@ path = "README.md" [[tool.hatch.metadata.hooks.fancy-pypi-readme.substitutions]] # replace relative links with absolute links pattern = '\[(.+?)\]\(((?!https?://)\S+?)\)' -replacement = '[\1](https://github.com/stainless-sdks/everos-python/tree/main/\g<2>)' +replacement = '[\1](https://github.com/evermemos/everos-python/tree/main/\g<2>)' [tool.pytest.ini_options] testpaths = ["tests"] diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 0000000..5a47157 --- /dev/null +++ b/release-please-config.json @@ -0,0 +1,66 @@ +{ + "packages": { + ".": {} + }, + "$schema": "https://raw.githubusercontent.com/stainless-api/release-please/main/schemas/config.json", + "include-v-in-tag": true, + "include-component-in-tag": false, + "versioning": "prerelease", + "prerelease": true, + "bump-minor-pre-major": true, + "bump-patch-for-minor-pre-major": false, + "pull-request-header": "Automated Release PR", + "pull-request-title-pattern": "release: ${version}", + "changelog-sections": [ + { + "type": "feat", + "section": "Features" + }, + { + "type": "fix", + "section": "Bug Fixes" + }, + { + "type": "perf", + "section": "Performance Improvements" + }, + { + "type": "revert", + "section": "Reverts" + }, + { + "type": "chore", + "section": "Chores" + }, + { + "type": "docs", + "section": "Documentation" + }, + { + "type": "style", + "section": "Styles" + }, + { + "type": "refactor", + "section": "Refactors" + }, + { + "type": "test", + "section": "Tests", + "hidden": true + }, + { + "type": "build", + "section": "Build System" + }, + { + "type": "ci", + "section": "Continuous Integration", + "hidden": true + } + ], + "release-type": "python", + "extra-files": [ + "src/everos/_version.py" + ] +} \ No newline at end of file diff --git a/src/everos/_version.py b/src/everos/_version.py index 4ca3836..9ad6d9e 100644 --- a/src/everos/_version.py +++ b/src/everos/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "everos" -__version__ = "0.0.1" +__version__ = "0.0.2" # x-release-please-version diff --git a/src/everos/resources/v1/groups.py b/src/everos/resources/v1/groups.py index 4fe9df1..874d33d 100644 --- a/src/everos/resources/v1/groups.py +++ b/src/everos/resources/v1/groups.py @@ -32,7 +32,7 @@ def with_raw_response(self) -> GroupsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/everos-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/evermemos/everos-python#accessing-raw-response-data-eg-headers """ return GroupsResourceWithRawResponse(self) @@ -41,7 +41,7 @@ def with_streaming_response(self) -> GroupsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/everos-python#with_streaming_response + For more information, see https://www.github.com/evermemos/everos-python#with_streaming_response """ return GroupsResourceWithStreamingResponse(self) @@ -183,7 +183,7 @@ def with_raw_response(self) -> AsyncGroupsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/everos-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/evermemos/everos-python#accessing-raw-response-data-eg-headers """ return AsyncGroupsResourceWithRawResponse(self) @@ -192,7 +192,7 @@ def with_streaming_response(self) -> AsyncGroupsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/everos-python#with_streaming_response + For more information, see https://www.github.com/evermemos/everos-python#with_streaming_response """ return AsyncGroupsResourceWithStreamingResponse(self) diff --git a/src/everos/resources/v1/memories/agent.py b/src/everos/resources/v1/memories/agent.py index 2d13d3b..cf20da1 100644 --- a/src/everos/resources/v1/memories/agent.py +++ b/src/everos/resources/v1/memories/agent.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> AgentResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/everos-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/evermemos/everos-python#accessing-raw-response-data-eg-headers """ return AgentResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> AgentResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/everos-python#with_streaming_response + For more information, see https://www.github.com/evermemos/everos-python#with_streaming_response """ return AgentResourceWithStreamingResponse(self) @@ -154,7 +154,7 @@ def with_raw_response(self) -> AsyncAgentResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/everos-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/evermemos/everos-python#accessing-raw-response-data-eg-headers """ return AsyncAgentResourceWithRawResponse(self) @@ -163,7 +163,7 @@ def with_streaming_response(self) -> AsyncAgentResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/everos-python#with_streaming_response + For more information, see https://www.github.com/evermemos/everos-python#with_streaming_response """ return AsyncAgentResourceWithStreamingResponse(self) diff --git a/src/everos/resources/v1/memories/group.py b/src/everos/resources/v1/memories/group.py index d8a049f..3643608 100644 --- a/src/everos/resources/v1/memories/group.py +++ b/src/everos/resources/v1/memories/group.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> GroupResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/everos-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/evermemos/everos-python#accessing-raw-response-data-eg-headers """ return GroupResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> GroupResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/everos-python#with_streaming_response + For more information, see https://www.github.com/evermemos/everos-python#with_streaming_response """ return GroupResourceWithStreamingResponse(self) @@ -144,7 +144,7 @@ def with_raw_response(self) -> AsyncGroupResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/everos-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/evermemos/everos-python#accessing-raw-response-data-eg-headers """ return AsyncGroupResourceWithRawResponse(self) @@ -153,7 +153,7 @@ def with_streaming_response(self) -> AsyncGroupResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/everos-python#with_streaming_response + For more information, see https://www.github.com/evermemos/everos-python#with_streaming_response """ return AsyncGroupResourceWithStreamingResponse(self) diff --git a/src/everos/resources/v1/memories/memories.py b/src/everos/resources/v1/memories/memories.py index 168fd5b..340bfc6 100644 --- a/src/everos/resources/v1/memories/memories.py +++ b/src/everos/resources/v1/memories/memories.py @@ -68,7 +68,7 @@ def with_raw_response(self) -> MemoriesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/everos-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/evermemos/everos-python#accessing-raw-response-data-eg-headers """ return MemoriesResourceWithRawResponse(self) @@ -77,7 +77,7 @@ def with_streaming_response(self) -> MemoriesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/everos-python#with_streaming_response + For more information, see https://www.github.com/evermemos/everos-python#with_streaming_response """ return MemoriesResourceWithStreamingResponse(self) @@ -435,7 +435,7 @@ def with_raw_response(self) -> AsyncMemoriesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/everos-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/evermemos/everos-python#accessing-raw-response-data-eg-headers """ return AsyncMemoriesResourceWithRawResponse(self) @@ -444,7 +444,7 @@ def with_streaming_response(self) -> AsyncMemoriesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/everos-python#with_streaming_response + For more information, see https://www.github.com/evermemos/everos-python#with_streaming_response """ return AsyncMemoriesResourceWithStreamingResponse(self) diff --git a/src/everos/resources/v1/object.py b/src/everos/resources/v1/object.py index 68daec2..a4dc96a 100644 --- a/src/everos/resources/v1/object.py +++ b/src/everos/resources/v1/object.py @@ -32,7 +32,7 @@ def with_raw_response(self) -> ObjectResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/everos-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/evermemos/everos-python#accessing-raw-response-data-eg-headers """ return ObjectResourceWithRawResponse(self) @@ -41,7 +41,7 @@ def with_streaming_response(self) -> ObjectResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/everos-python#with_streaming_response + For more information, see https://www.github.com/evermemos/everos-python#with_streaming_response """ return ObjectResourceWithStreamingResponse(self) @@ -98,7 +98,7 @@ def with_raw_response(self) -> AsyncObjectResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/everos-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/evermemos/everos-python#accessing-raw-response-data-eg-headers """ return AsyncObjectResourceWithRawResponse(self) @@ -107,7 +107,7 @@ def with_streaming_response(self) -> AsyncObjectResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/everos-python#with_streaming_response + For more information, see https://www.github.com/evermemos/everos-python#with_streaming_response """ return AsyncObjectResourceWithStreamingResponse(self) diff --git a/src/everos/resources/v1/senders.py b/src/everos/resources/v1/senders.py index f9ab0e8..f4449c2 100644 --- a/src/everos/resources/v1/senders.py +++ b/src/everos/resources/v1/senders.py @@ -32,7 +32,7 @@ def with_raw_response(self) -> SendersResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/everos-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/evermemos/everos-python#accessing-raw-response-data-eg-headers """ return SendersResourceWithRawResponse(self) @@ -41,7 +41,7 @@ def with_streaming_response(self) -> SendersResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/everos-python#with_streaming_response + For more information, see https://www.github.com/evermemos/everos-python#with_streaming_response """ return SendersResourceWithStreamingResponse(self) @@ -168,7 +168,7 @@ def with_raw_response(self) -> AsyncSendersResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/everos-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/evermemos/everos-python#accessing-raw-response-data-eg-headers """ return AsyncSendersResourceWithRawResponse(self) @@ -177,7 +177,7 @@ def with_streaming_response(self) -> AsyncSendersResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/everos-python#with_streaming_response + For more information, see https://www.github.com/evermemos/everos-python#with_streaming_response """ return AsyncSendersResourceWithStreamingResponse(self) diff --git a/src/everos/resources/v1/settings.py b/src/everos/resources/v1/settings.py index a1cdf64..5e8b839 100644 --- a/src/everos/resources/v1/settings.py +++ b/src/everos/resources/v1/settings.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> SettingsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/everos-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/evermemos/everos-python#accessing-raw-response-data-eg-headers """ return SettingsResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> SettingsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/everos-python#with_streaming_response + For more information, see https://www.github.com/evermemos/everos-python#with_streaming_response """ return SettingsResourceWithStreamingResponse(self) @@ -132,7 +132,7 @@ def with_raw_response(self) -> AsyncSettingsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/everos-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/evermemos/everos-python#accessing-raw-response-data-eg-headers """ return AsyncSettingsResourceWithRawResponse(self) @@ -141,7 +141,7 @@ def with_streaming_response(self) -> AsyncSettingsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/everos-python#with_streaming_response + For more information, see https://www.github.com/evermemos/everos-python#with_streaming_response """ return AsyncSettingsResourceWithStreamingResponse(self) diff --git a/src/everos/resources/v1/v1.py b/src/everos/resources/v1/v1.py index 6da5fb2..1924c8a 100644 --- a/src/everos/resources/v1/v1.py +++ b/src/everos/resources/v1/v1.py @@ -94,7 +94,7 @@ def with_raw_response(self) -> V1ResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/everos-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/evermemos/everos-python#accessing-raw-response-data-eg-headers """ return V1ResourceWithRawResponse(self) @@ -103,7 +103,7 @@ def with_streaming_response(self) -> V1ResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/everos-python#with_streaming_response + For more information, see https://www.github.com/evermemos/everos-python#with_streaming_response """ return V1ResourceWithStreamingResponse(self) @@ -178,7 +178,7 @@ def with_raw_response(self) -> AsyncV1ResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/everos-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/evermemos/everos-python#accessing-raw-response-data-eg-headers """ return AsyncV1ResourceWithRawResponse(self) @@ -187,7 +187,7 @@ def with_streaming_response(self) -> AsyncV1ResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/everos-python#with_streaming_response + For more information, see https://www.github.com/evermemos/everos-python#with_streaming_response """ return AsyncV1ResourceWithStreamingResponse(self)