diff --git a/.github/workflows/publish-pypi.yml b/.github/workflows/publish-pypi.yml new file mode 100644 index 0000000..f501f43 --- /dev/null +++ b/.github/workflows/publish-pypi.yml @@ -0,0 +1,31 @@ +# 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/DataMini/asktable-python/actions/workflows/publish-pypi.yml +name: Publish PyPI +on: + workflow_dispatch: + + release: + types: [published] + +jobs: + publish: + name: publish + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Install Rye + run: | + curl -sSf https://rye.astral.sh/get | bash + echo "$HOME/.rye/shims" >> $GITHUB_PATH + env: + RYE_VERSION: '0.35.0' + RYE_INSTALL_OPTION: '--yes' + + - name: Publish to PyPI + run: | + bash ./bin/publish-pypi + env: + PYPI_TOKEN: ${{ secrets.ASKTABLE_PYPI_TOKEN || secrets.PYPI_TOKEN }} diff --git a/.github/workflows/release-doctor.yml b/.github/workflows/release-doctor.yml new file mode 100644 index 0000000..1800bc5 --- /dev/null +++ b/.github/workflows/release-doctor.yml @@ -0,0 +1,21 @@ +name: Release Doctor +on: + pull_request: + branches: + - main + workflow_dispatch: + +jobs: + release_doctor: + name: release doctor + runs-on: ubuntu-latest + if: github.repository == 'DataMini/asktable-python' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next') + + steps: + - uses: actions/checkout@v4 + + - name: Check release environment + run: | + bash ./bin/check-release-environment + env: + PYPI_TOKEN: ${{ secrets.ASKTABLE_PYPI_TOKEN || secrets.PYPI_TOKEN }} diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 0000000..c476280 --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,3 @@ +{ + ".": "0.0.1-alpha.0" +} \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0f87334..94c275c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -59,7 +59,7 @@ If you’d like to use the repository from source, you can either install from g To install via git: ```bash -pip install git+ssh://git@github.com/stainless-sdks/asktable-python.git +pip install git+ssh://git@github.com/DataMini/asktable-python.git ``` Alternatively, you can build from source and install the wheel file: @@ -117,7 +117,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/asktable-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/DataMini/asktable-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 e295763..6a6fb50 100644 --- a/README.md +++ b/README.md @@ -15,13 +15,10 @@ The REST API documentation can be found on [docs.asktable.com](https://docs.askt ## Installation ```sh -# install from this staging repo -pip install git+ssh://git@github.com/stainless-sdks/asktable-python.git +# install from PyPI +pip install --pre asktable ``` -> [!NOTE] -> Once this package is [published to PyPI](https://app.stainlessapi.com/docs/guides/publish), this will become: `pip install --pre asktable` - ## Usage The full API of this library can be found in [api.md](api.md). @@ -210,9 +207,9 @@ project = response.parse() # get the object that `sys.projects.create()` would print(project.id) ``` -These methods return an [`APIResponse`](https://github.com/stainless-sdks/asktable-python/tree/main/src/asktable/_response.py) object. +These methods return an [`APIResponse`](https://github.com/DataMini/asktable-python/tree/main/src/asktable/_response.py) object. -The async client returns an [`AsyncAPIResponse`](https://github.com/stainless-sdks/asktable-python/tree/main/src/asktable/_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/DataMini/asktable-python/tree/main/src/asktable/_response.py) with the same structure, the only difference being `await`able methods for reading the response content. #### `.with_streaming_response` @@ -308,7 +305,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/asktable-python/issues) with questions, bugs, or suggestions. +We are keen for your feedback; please open an [issue](https://www.github.com/DataMini/asktable-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..b820066 --- /dev/null +++ b/bin/check-release-environment @@ -0,0 +1,21 @@ +#!/usr/bin/env bash + +errors=() + +if [ -z "${PYPI_TOKEN}" ]; then + errors+=("The ASKTABLE_PYPI_TOKEN secret has not been set. Please set it in either this repository's secrets or your organization secrets.") +fi + +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/pyproject.toml b/pyproject.toml index 084df12..4897e0f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,8 +36,8 @@ classifiers = [ ] [project.urls] -Homepage = "https://github.com/stainless-sdks/asktable-python" -Repository = "https://github.com/stainless-sdks/asktable-python" +Homepage = "https://github.com/DataMini/asktable-python" +Repository = "https://github.com/DataMini/asktable-python" @@ -123,7 +123,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/asktable-python/tree/main/\g<2>)' +replacement = '[\1](https://github.com/DataMini/asktable-python/tree/main/\g<2>)' [tool.black] line-length = 120 diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 0000000..768c88e --- /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/asktable/_version.py" + ] +} \ No newline at end of file diff --git a/src/asktable/_version.py b/src/asktable/_version.py index 90588d4..f27d7eb 100644 --- a/src/asktable/_version.py +++ b/src/asktable/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "asktable" -__version__ = "0.0.1-alpha.0" +__version__ = "0.0.1-alpha.0" # x-release-please-version diff --git a/src/asktable/resources/auth/auth.py b/src/asktable/resources/auth/auth.py index c6489aa..b8ec4b4 100644 --- a/src/asktable/resources/auth/auth.py +++ b/src/asktable/resources/auth/auth.py @@ -39,7 +39,7 @@ def with_raw_response(self) -> AuthResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AuthResourceWithRawResponse(self) @@ -48,7 +48,7 @@ def with_streaming_response(self) -> AuthResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AuthResourceWithStreamingResponse(self) @@ -68,7 +68,7 @@ def with_raw_response(self) -> AsyncAuthResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncAuthResourceWithRawResponse(self) @@ -77,7 +77,7 @@ def with_streaming_response(self) -> AsyncAuthResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncAuthResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/auth/me.py b/src/asktable/resources/auth/me.py index b791483..9ee4954 100644 --- a/src/asktable/resources/auth/me.py +++ b/src/asktable/resources/auth/me.py @@ -25,7 +25,7 @@ def with_raw_response(self) -> MeResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return MeResourceWithRawResponse(self) @@ -34,7 +34,7 @@ def with_streaming_response(self) -> MeResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return MeResourceWithStreamingResponse(self) @@ -65,7 +65,7 @@ def with_raw_response(self) -> AsyncMeResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncMeResourceWithRawResponse(self) @@ -74,7 +74,7 @@ def with_streaming_response(self) -> AsyncMeResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncMeResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/auth/tokens.py b/src/asktable/resources/auth/tokens.py index 118cd93..7b3d5fc 100644 --- a/src/asktable/resources/auth/tokens.py +++ b/src/asktable/resources/auth/tokens.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> TokensResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return TokensResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> TokensResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return TokensResourceWithStreamingResponse(self) @@ -105,7 +105,7 @@ def with_raw_response(self) -> AsyncTokensResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncTokensResourceWithRawResponse(self) @@ -114,7 +114,7 @@ def with_streaming_response(self) -> AsyncTokensResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncTokensResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/bots.py b/src/asktable/resources/bots.py index bd74d9d..6941652 100644 --- a/src/asktable/resources/bots.py +++ b/src/asktable/resources/bots.py @@ -34,7 +34,7 @@ def with_raw_response(self) -> BotsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return BotsResourceWithRawResponse(self) @@ -43,7 +43,7 @@ def with_streaming_response(self) -> BotsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return BotsResourceWithStreamingResponse(self) @@ -316,7 +316,7 @@ def with_raw_response(self) -> AsyncBotsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncBotsResourceWithRawResponse(self) @@ -325,7 +325,7 @@ def with_streaming_response(self) -> AsyncBotsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncBotsResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/caches.py b/src/asktable/resources/caches.py index 2161153..9dde4a1 100644 --- a/src/asktable/resources/caches.py +++ b/src/asktable/resources/caches.py @@ -25,7 +25,7 @@ def with_raw_response(self) -> CachesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return CachesResourceWithRawResponse(self) @@ -34,7 +34,7 @@ def with_streaming_response(self) -> CachesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return CachesResourceWithStreamingResponse(self) @@ -80,7 +80,7 @@ def with_raw_response(self) -> AsyncCachesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncCachesResourceWithRawResponse(self) @@ -89,7 +89,7 @@ def with_streaming_response(self) -> AsyncCachesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncCachesResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/chats/chats.py b/src/asktable/resources/chats/chats.py index 14f70b3..4f152ae 100644 --- a/src/asktable/resources/chats/chats.py +++ b/src/asktable/resources/chats/chats.py @@ -47,7 +47,7 @@ def with_raw_response(self) -> ChatsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return ChatsResourceWithRawResponse(self) @@ -56,7 +56,7 @@ def with_streaming_response(self) -> ChatsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return ChatsResourceWithStreamingResponse(self) @@ -246,7 +246,7 @@ def with_raw_response(self) -> AsyncChatsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncChatsResourceWithRawResponse(self) @@ -255,7 +255,7 @@ def with_streaming_response(self) -> AsyncChatsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncChatsResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/chats/messages.py b/src/asktable/resources/chats/messages.py index 0ababe6..1c89cb4 100644 --- a/src/asktable/resources/chats/messages.py +++ b/src/asktable/resources/chats/messages.py @@ -32,7 +32,7 @@ def with_raw_response(self) -> MessagesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return MessagesResourceWithRawResponse(self) @@ -41,7 +41,7 @@ def with_streaming_response(self) -> MessagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return MessagesResourceWithStreamingResponse(self) @@ -176,7 +176,7 @@ def with_raw_response(self) -> AsyncMessagesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncMessagesResourceWithRawResponse(self) @@ -185,7 +185,7 @@ def with_streaming_response(self) -> AsyncMessagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncMessagesResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/datasources/datasources.py b/src/asktable/resources/datasources/datasources.py index 82ebb8c..cf4ce0e 100644 --- a/src/asktable/resources/datasources/datasources.py +++ b/src/asktable/resources/datasources/datasources.py @@ -83,7 +83,7 @@ def with_raw_response(self) -> DatasourcesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return DatasourcesResourceWithRawResponse(self) @@ -92,7 +92,7 @@ def with_streaming_response(self) -> DatasourcesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return DatasourcesResourceWithStreamingResponse(self) @@ -367,7 +367,7 @@ def with_raw_response(self) -> AsyncDatasourcesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncDatasourcesResourceWithRawResponse(self) @@ -376,7 +376,7 @@ def with_streaming_response(self) -> AsyncDatasourcesResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncDatasourcesResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/datasources/download_url.py b/src/asktable/resources/datasources/download_url.py index 91f3779..c11c276 100644 --- a/src/asktable/resources/datasources/download_url.py +++ b/src/asktable/resources/datasources/download_url.py @@ -25,7 +25,7 @@ def with_raw_response(self) -> DownloadURLResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return DownloadURLResourceWithRawResponse(self) @@ -34,7 +34,7 @@ def with_streaming_response(self) -> DownloadURLResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return DownloadURLResourceWithStreamingResponse(self) @@ -79,7 +79,7 @@ def with_raw_response(self) -> AsyncDownloadURLResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncDownloadURLResourceWithRawResponse(self) @@ -88,7 +88,7 @@ def with_streaming_response(self) -> AsyncDownloadURLResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncDownloadURLResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/datasources/meta.py b/src/asktable/resources/datasources/meta.py index ba09f00..7ca3af8 100644 --- a/src/asktable/resources/datasources/meta.py +++ b/src/asktable/resources/datasources/meta.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> MetaResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return MetaResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> MetaResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return MetaResourceWithStreamingResponse(self) @@ -175,7 +175,7 @@ def with_raw_response(self) -> AsyncMetaResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncMetaResourceWithRawResponse(self) @@ -184,7 +184,7 @@ def with_streaming_response(self) -> AsyncMetaResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncMetaResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/datasources/upload_file.py b/src/asktable/resources/datasources/upload_file.py index 6957f24..ac02e0b 100644 --- a/src/asktable/resources/datasources/upload_file.py +++ b/src/asktable/resources/datasources/upload_file.py @@ -34,7 +34,7 @@ def with_raw_response(self) -> UploadFileResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return UploadFileResourceWithRawResponse(self) @@ -43,7 +43,7 @@ def with_streaming_response(self) -> UploadFileResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return UploadFileResourceWithStreamingResponse(self) @@ -94,7 +94,7 @@ def with_raw_response(self) -> AsyncUploadFileResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncUploadFileResourceWithRawResponse(self) @@ -103,7 +103,7 @@ def with_streaming_response(self) -> AsyncUploadFileResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncUploadFileResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/datasources/upload_params.py b/src/asktable/resources/datasources/upload_params.py index 1aa6ed0..8ce7e2c 100644 --- a/src/asktable/resources/datasources/upload_params.py +++ b/src/asktable/resources/datasources/upload_params.py @@ -32,7 +32,7 @@ def with_raw_response(self) -> UploadParamsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return UploadParamsResourceWithRawResponse(self) @@ -41,7 +41,7 @@ def with_streaming_response(self) -> UploadParamsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return UploadParamsResourceWithStreamingResponse(self) @@ -96,7 +96,7 @@ def with_raw_response(self) -> AsyncUploadParamsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncUploadParamsResourceWithRawResponse(self) @@ -105,7 +105,7 @@ def with_streaming_response(self) -> AsyncUploadParamsResourceWithStreamingRespo """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncUploadParamsResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/extapis/extapis.py b/src/asktable/resources/extapis/extapis.py index 58aa430..66edd2f 100644 --- a/src/asktable/resources/extapis/extapis.py +++ b/src/asktable/resources/extapis/extapis.py @@ -47,7 +47,7 @@ def with_raw_response(self) -> ExtapisResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return ExtapisResourceWithRawResponse(self) @@ -56,7 +56,7 @@ def with_streaming_response(self) -> ExtapisResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return ExtapisResourceWithStreamingResponse(self) @@ -293,7 +293,7 @@ def with_raw_response(self) -> AsyncExtapisResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncExtapisResourceWithRawResponse(self) @@ -302,7 +302,7 @@ def with_streaming_response(self) -> AsyncExtapisResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncExtapisResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/extapis/routes.py b/src/asktable/resources/extapis/routes.py index 1763512..3c0d305 100644 --- a/src/asktable/resources/extapis/routes.py +++ b/src/asktable/resources/extapis/routes.py @@ -36,7 +36,7 @@ def with_raw_response(self) -> RoutesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return RoutesResourceWithRawResponse(self) @@ -45,7 +45,7 @@ def with_streaming_response(self) -> RoutesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return RoutesResourceWithStreamingResponse(self) @@ -300,7 +300,7 @@ def with_raw_response(self) -> AsyncRoutesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncRoutesResourceWithRawResponse(self) @@ -309,7 +309,7 @@ def with_streaming_response(self) -> AsyncRoutesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncRoutesResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/integration.py b/src/asktable/resources/integration.py index 3f41647..2fff6af 100644 --- a/src/asktable/resources/integration.py +++ b/src/asktable/resources/integration.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> IntegrationResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return IntegrationResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> IntegrationResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return IntegrationResourceWithStreamingResponse(self) @@ -95,7 +95,7 @@ def with_raw_response(self) -> AsyncIntegrationResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncIntegrationResourceWithRawResponse(self) @@ -104,7 +104,7 @@ def with_streaming_response(self) -> AsyncIntegrationResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncIntegrationResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/policies.py b/src/asktable/resources/policies.py index 8afece6..d788952 100644 --- a/src/asktable/resources/policies.py +++ b/src/asktable/resources/policies.py @@ -35,7 +35,7 @@ def with_raw_response(self) -> PoliciesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return PoliciesResourceWithRawResponse(self) @@ -44,7 +44,7 @@ def with_streaming_response(self) -> PoliciesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return PoliciesResourceWithStreamingResponse(self) @@ -270,7 +270,7 @@ def with_raw_response(self) -> AsyncPoliciesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncPoliciesResourceWithRawResponse(self) @@ -279,7 +279,7 @@ def with_streaming_response(self) -> AsyncPoliciesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncPoliciesResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/roles/policies.py b/src/asktable/resources/roles/policies.py index e699126..7c64f97 100644 --- a/src/asktable/resources/roles/policies.py +++ b/src/asktable/resources/roles/policies.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> PoliciesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return PoliciesResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> PoliciesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return PoliciesResourceWithStreamingResponse(self) @@ -80,7 +80,7 @@ def with_raw_response(self) -> AsyncPoliciesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncPoliciesResourceWithRawResponse(self) @@ -89,7 +89,7 @@ def with_streaming_response(self) -> AsyncPoliciesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncPoliciesResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/roles/roles.py b/src/asktable/resources/roles/roles.py index 0e5b9c1..5ebcab3 100644 --- a/src/asktable/resources/roles/roles.py +++ b/src/asktable/resources/roles/roles.py @@ -58,7 +58,7 @@ def with_raw_response(self) -> RolesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return RolesResourceWithRawResponse(self) @@ -67,7 +67,7 @@ def with_streaming_response(self) -> RolesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return RolesResourceWithStreamingResponse(self) @@ -292,7 +292,7 @@ def with_raw_response(self) -> AsyncRolesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncRolesResourceWithRawResponse(self) @@ -301,7 +301,7 @@ def with_streaming_response(self) -> AsyncRolesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncRolesResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/roles/variables.py b/src/asktable/resources/roles/variables.py index ff5bffa..ec2ec5a 100644 --- a/src/asktable/resources/roles/variables.py +++ b/src/asktable/resources/roles/variables.py @@ -32,7 +32,7 @@ def with_raw_response(self) -> VariablesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return VariablesResourceWithRawResponse(self) @@ -41,7 +41,7 @@ def with_streaming_response(self) -> VariablesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return VariablesResourceWithStreamingResponse(self) @@ -102,7 +102,7 @@ def with_raw_response(self) -> AsyncVariablesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncVariablesResourceWithRawResponse(self) @@ -111,7 +111,7 @@ def with_streaming_response(self) -> AsyncVariablesResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncVariablesResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/securetunnels/links.py b/src/asktable/resources/securetunnels/links.py index 4704484..9976b71 100644 --- a/src/asktable/resources/securetunnels/links.py +++ b/src/asktable/resources/securetunnels/links.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> LinksResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return LinksResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> LinksResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return LinksResourceWithStreamingResponse(self) @@ -101,7 +101,7 @@ def with_raw_response(self) -> AsyncLinksResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncLinksResourceWithRawResponse(self) @@ -110,7 +110,7 @@ def with_streaming_response(self) -> AsyncLinksResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncLinksResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/securetunnels/securetunnels.py b/src/asktable/resources/securetunnels/securetunnels.py index de058be..d7da912 100644 --- a/src/asktable/resources/securetunnels/securetunnels.py +++ b/src/asktable/resources/securetunnels/securetunnels.py @@ -46,7 +46,7 @@ def with_raw_response(self) -> SecuretunnelsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return SecuretunnelsResourceWithRawResponse(self) @@ -55,7 +55,7 @@ def with_streaming_response(self) -> SecuretunnelsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return SecuretunnelsResourceWithStreamingResponse(self) @@ -268,7 +268,7 @@ def with_raw_response(self) -> AsyncSecuretunnelsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncSecuretunnelsResourceWithRawResponse(self) @@ -277,7 +277,7 @@ def with_streaming_response(self) -> AsyncSecuretunnelsResourceWithStreamingResp """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncSecuretunnelsResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/single_turn/q2a.py b/src/asktable/resources/single_turn/q2a.py index e4fc2a2..e62f64f 100644 --- a/src/asktable/resources/single_turn/q2a.py +++ b/src/asktable/resources/single_turn/q2a.py @@ -34,7 +34,7 @@ def with_raw_response(self) -> Q2aResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return Q2aResourceWithRawResponse(self) @@ -43,7 +43,7 @@ def with_streaming_response(self) -> Q2aResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return Q2aResourceWithStreamingResponse(self) @@ -161,7 +161,7 @@ def with_raw_response(self) -> AsyncQ2aResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncQ2aResourceWithRawResponse(self) @@ -170,7 +170,7 @@ def with_streaming_response(self) -> AsyncQ2aResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncQ2aResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/single_turn/q2s.py b/src/asktable/resources/single_turn/q2s.py index bb36da9..b8bfcac 100644 --- a/src/asktable/resources/single_turn/q2s.py +++ b/src/asktable/resources/single_turn/q2s.py @@ -34,7 +34,7 @@ def with_raw_response(self) -> Q2sResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return Q2sResourceWithRawResponse(self) @@ -43,7 +43,7 @@ def with_streaming_response(self) -> Q2sResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return Q2sResourceWithStreamingResponse(self) @@ -157,7 +157,7 @@ def with_raw_response(self) -> AsyncQ2sResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncQ2sResourceWithRawResponse(self) @@ -166,7 +166,7 @@ def with_streaming_response(self) -> AsyncQ2sResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncQ2sResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/single_turn/single_turn.py b/src/asktable/resources/single_turn/single_turn.py index 76a1c6f..e300e75 100644 --- a/src/asktable/resources/single_turn/single_turn.py +++ b/src/asktable/resources/single_turn/single_turn.py @@ -39,7 +39,7 @@ def with_raw_response(self) -> SingleTurnResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return SingleTurnResourceWithRawResponse(self) @@ -48,7 +48,7 @@ def with_streaming_response(self) -> SingleTurnResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return SingleTurnResourceWithStreamingResponse(self) @@ -68,7 +68,7 @@ def with_raw_response(self) -> AsyncSingleTurnResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncSingleTurnResourceWithRawResponse(self) @@ -77,7 +77,7 @@ def with_streaming_response(self) -> AsyncSingleTurnResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncSingleTurnResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/sys/projects/api_keys.py b/src/asktable/resources/sys/projects/api_keys.py index 975f987..448aed4 100644 --- a/src/asktable/resources/sys/projects/api_keys.py +++ b/src/asktable/resources/sys/projects/api_keys.py @@ -34,7 +34,7 @@ def with_raw_response(self) -> APIKeysResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return APIKeysResourceWithRawResponse(self) @@ -43,7 +43,7 @@ def with_streaming_response(self) -> APIKeysResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return APIKeysResourceWithStreamingResponse(self) @@ -162,7 +162,7 @@ def with_raw_response(self) -> AsyncAPIKeysResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncAPIKeysResourceWithRawResponse(self) @@ -171,7 +171,7 @@ def with_streaming_response(self) -> AsyncAPIKeysResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncAPIKeysResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/sys/projects/projects.py b/src/asktable/resources/sys/projects/projects.py index 99fba67..6d2db13 100644 --- a/src/asktable/resources/sys/projects/projects.py +++ b/src/asktable/resources/sys/projects/projects.py @@ -58,7 +58,7 @@ def with_raw_response(self) -> ProjectsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return ProjectsResourceWithRawResponse(self) @@ -67,7 +67,7 @@ def with_streaming_response(self) -> ProjectsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return ProjectsResourceWithStreamingResponse(self) @@ -283,7 +283,7 @@ def with_raw_response(self) -> AsyncProjectsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncProjectsResourceWithRawResponse(self) @@ -292,7 +292,7 @@ def with_streaming_response(self) -> AsyncProjectsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncProjectsResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/sys/projects/tokens.py b/src/asktable/resources/sys/projects/tokens.py index 8b87c3d..b45aa0e 100644 --- a/src/asktable/resources/sys/projects/tokens.py +++ b/src/asktable/resources/sys/projects/tokens.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> TokensResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return TokensResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> TokensResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return TokensResourceWithStreamingResponse(self) @@ -108,7 +108,7 @@ def with_raw_response(self) -> AsyncTokensResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncTokensResourceWithRawResponse(self) @@ -117,7 +117,7 @@ def with_streaming_response(self) -> AsyncTokensResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncTokensResourceWithStreamingResponse(self) diff --git a/src/asktable/resources/sys/sys.py b/src/asktable/resources/sys/sys.py index b06aeda..6d1cc21 100644 --- a/src/asktable/resources/sys/sys.py +++ b/src/asktable/resources/sys/sys.py @@ -28,7 +28,7 @@ def with_raw_response(self) -> SysResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return SysResourceWithRawResponse(self) @@ -37,7 +37,7 @@ def with_streaming_response(self) -> SysResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return SysResourceWithStreamingResponse(self) @@ -53,7 +53,7 @@ def with_raw_response(self) -> AsyncSysResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/asktable-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/DataMini/asktable-python#accessing-raw-response-data-eg-headers """ return AsyncSysResourceWithRawResponse(self) @@ -62,7 +62,7 @@ def with_streaming_response(self) -> AsyncSysResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/asktable-python#with_streaming_response + For more information, see https://www.github.com/DataMini/asktable-python#with_streaming_response """ return AsyncSysResourceWithStreamingResponse(self)