diff --git a/.github/workflows/publish-pypi.yml b/.github/workflows/publish-pypi.yml new file mode 100644 index 0000000..16b2b94 --- /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/coingecko/coingecko-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.44.0' + RYE_INSTALL_OPTION: '--yes' + + - name: Publish to PyPI + run: | + bash ./bin/publish-pypi + env: + PYPI_TOKEN: ${{ secrets.COINGECKO_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..d8c14af --- /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 == 'coingecko/coingecko-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.COINGECKO_PYPI_TOKEN || secrets.PYPI_TOKEN }} diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 0000000..ba6c348 --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,3 @@ +{ + ".": "0.1.0-alpha.1" +} \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index ee2c9a5..70b3910 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 76 openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/coingecko%2Fcoingecko-0484eb6fcafa51ea1f648a21d918ab3d0cd55ce6b0194c58d7da6f8361b1877a.yml openapi_spec_hash: 0c29bd602dbc3fb5a226320a3fd0f9d9 -config_hash: 9684d25b830cac76930ad06bbeeefa40 +config_hash: 32af38e9b952fcb968ba0dd1aaf8a90b diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..1d620dc --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,16 @@ +# Changelog + +## 0.1.0-alpha.1 (2025-05-28) + +Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/coingecko/coingecko-python/compare/v0.0.1-alpha.0...v0.1.0-alpha.1) + +### Features + +* **api:** update via SDK Studio ([2b17650](https://github.com/coingecko/coingecko-python/commit/2b17650480b4d839844a1fb09a7a1eba74a48966)) +* **api:** update via SDK Studio ([c7b2f6c](https://github.com/coingecko/coingecko-python/commit/c7b2f6c7a949b1ac299601712e291dd22cad5d20)) +* **api:** update via SDK Studio ([2e88eda](https://github.com/coingecko/coingecko-python/commit/2e88edae53fe8c78f114d83a069bdcd90e1505ef)) + + +### Chores + +* update SDK settings ([616d906](https://github.com/coingecko/coingecko-python/commit/616d9066a6514fb0f9d33dd941a135bcf84700ca)) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ca593a4..3057f98 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -63,7 +63,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/coingecko-python.git +$ pip install git+ssh://git@github.com/coingecko/coingecko-python.git ``` Alternatively, you can build from source and install the wheel file: @@ -121,7 +121,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/coingecko-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/coingecko/coingecko-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 ecd0e3d..43b319b 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,8 @@ The REST API documentation can be found on [docs.coingecko.com](https://docs.coi ## Installation ```sh -# install from this staging repo -pip install git+ssh://git@github.com/stainless-sdks/coingecko-python.git +# install from the production repo +pip install git+ssh://git@github.com/coingecko/coingecko-python.git ``` > [!NOTE] @@ -228,9 +228,9 @@ price = response.parse() # get the object that `simple.price.get()` would have print(price.last_updated_at) ``` -These methods return an [`APIResponse`](https://github.com/stainless-sdks/coingecko-python/tree/main/src/coingecko_python/_response.py) object. +These methods return an [`APIResponse`](https://github.com/coingecko/coingecko-python/tree/main/src/coingecko_python/_response.py) object. -The async client returns an [`AsyncAPIResponse`](https://github.com/stainless-sdks/coingecko-python/tree/main/src/coingecko_python/_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/coingecko/coingecko-python/tree/main/src/coingecko_python/_response.py) with the same structure, the only difference being `await`able methods for reading the response content. #### `.with_streaming_response` @@ -337,7 +337,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/coingecko-python/issues) with questions, bugs, or suggestions. +We are keen for your feedback; please open an [issue](https://www.github.com/coingecko/coingecko-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..08ed7d7 --- /dev/null +++ b/bin/check-release-environment @@ -0,0 +1,21 @@ +#!/usr/bin/env bash + +errors=() + +if [ -z "${PYPI_TOKEN}" ]; then + errors+=("The COINGECKO_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 12fc78c..b7a72f1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "coingecko_python" -version = "0.0.1-alpha.0" +version = "0.1.0-alpha.1" description = "The official Python library for the coingecko API" dynamic = ["readme"] license = "Apache-2.0" @@ -34,8 +34,8 @@ classifiers = [ ] [project.urls] -Homepage = "https://github.com/stainless-sdks/coingecko-python" -Repository = "https://github.com/stainless-sdks/coingecko-python" +Homepage = "https://github.com/coingecko/coingecko-python" +Repository = "https://github.com/coingecko/coingecko-python" [tool.rye] @@ -121,7 +121,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/coingecko-python/tree/main/\g<2>)' +replacement = '[\1](https://github.com/coingecko/coingecko-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..3abf754 --- /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/coingecko_python/_version.py" + ] +} \ No newline at end of file diff --git a/src/coingecko_python/_version.py b/src/coingecko_python/_version.py index 6fe3244..89e9c2e 100644 --- a/src/coingecko_python/_version.py +++ b/src/coingecko_python/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "coingecko_python" -__version__ = "0.0.1-alpha.0" +__version__ = "0.1.0-alpha.1" # x-release-please-version diff --git a/src/coingecko_python/resources/asset_platforms.py b/src/coingecko_python/resources/asset_platforms.py index ed4f54c..18e587f 100644 --- a/src/coingecko_python/resources/asset_platforms.py +++ b/src/coingecko_python/resources/asset_platforms.py @@ -30,7 +30,7 @@ def with_raw_response(self) -> AssetPlatformsResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AssetPlatformsResourceWithRawResponse(self) @@ -39,7 +39,7 @@ def with_streaming_response(self) -> AssetPlatformsResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AssetPlatformsResourceWithStreamingResponse(self) @@ -88,7 +88,7 @@ def with_raw_response(self) -> AsyncAssetPlatformsResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncAssetPlatformsResourceWithRawResponse(self) @@ -97,7 +97,7 @@ def with_streaming_response(self) -> AsyncAssetPlatformsResourceWithStreamingRes """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncAssetPlatformsResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/coins/categories.py b/src/coingecko_python/resources/coins/categories.py index aa7e6a1..6e33334 100644 --- a/src/coingecko_python/resources/coins/categories.py +++ b/src/coingecko_python/resources/coins/categories.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> CategoriesResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return CategoriesResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> CategoriesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return CategoriesResourceWithStreamingResponse(self) @@ -117,7 +117,7 @@ def with_raw_response(self) -> AsyncCategoriesResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncCategoriesResourceWithRawResponse(self) @@ -126,7 +126,7 @@ def with_streaming_response(self) -> AsyncCategoriesResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncCategoriesResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/coins/circulating_supply_chart.py b/src/coingecko_python/resources/coins/circulating_supply_chart.py index 46f81b6..43b0aa0 100644 --- a/src/coingecko_python/resources/coins/circulating_supply_chart.py +++ b/src/coingecko_python/resources/coins/circulating_supply_chart.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> CirculatingSupplyChartResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return CirculatingSupplyChartResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> CirculatingSupplyChartResourceWithStreaming """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return CirculatingSupplyChartResourceWithStreamingResponse(self) @@ -152,7 +152,7 @@ def with_raw_response(self) -> AsyncCirculatingSupplyChartResourceWithRawRespons 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncCirculatingSupplyChartResourceWithRawResponse(self) @@ -161,7 +161,7 @@ def with_streaming_response(self) -> AsyncCirculatingSupplyChartResourceWithStre """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncCirculatingSupplyChartResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/coins/coins.py b/src/coingecko_python/resources/coins/coins.py index 074bd47..9c3c1a8 100644 --- a/src/coingecko_python/resources/coins/coins.py +++ b/src/coingecko_python/resources/coins/coins.py @@ -160,7 +160,7 @@ def with_raw_response(self) -> CoinsResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return CoinsResourceWithRawResponse(self) @@ -169,7 +169,7 @@ def with_streaming_response(self) -> CoinsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return CoinsResourceWithStreamingResponse(self) @@ -293,7 +293,7 @@ def with_raw_response(self) -> AsyncCoinsResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncCoinsResourceWithRawResponse(self) @@ -302,7 +302,7 @@ def with_streaming_response(self) -> AsyncCoinsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncCoinsResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/coins/contract/contract.py b/src/coingecko_python/resources/coins/contract/contract.py index 60abcb7..9ea9c0e 100644 --- a/src/coingecko_python/resources/coins/contract/contract.py +++ b/src/coingecko_python/resources/coins/contract/contract.py @@ -38,7 +38,7 @@ def with_raw_response(self) -> ContractResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return ContractResourceWithRawResponse(self) @@ -47,7 +47,7 @@ def with_streaming_response(self) -> ContractResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return ContractResourceWithStreamingResponse(self) @@ -102,7 +102,7 @@ def with_raw_response(self) -> AsyncContractResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncContractResourceWithRawResponse(self) @@ -111,7 +111,7 @@ def with_streaming_response(self) -> AsyncContractResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncContractResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/coins/contract/market_chart.py b/src/coingecko_python/resources/coins/contract/market_chart.py index ff02e15..f6f89d3 100644 --- a/src/coingecko_python/resources/coins/contract/market_chart.py +++ b/src/coingecko_python/resources/coins/contract/market_chart.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> MarketChartResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return MarketChartResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> MarketChartResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return MarketChartResourceWithStreamingResponse(self) @@ -227,7 +227,7 @@ def with_raw_response(self) -> AsyncMarketChartResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncMarketChartResourceWithRawResponse(self) @@ -236,7 +236,7 @@ def with_streaming_response(self) -> AsyncMarketChartResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncMarketChartResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/coins/history.py b/src/coingecko_python/resources/coins/history.py index 0b8ac02..6ef28f9 100644 --- a/src/coingecko_python/resources/coins/history.py +++ b/src/coingecko_python/resources/coins/history.py @@ -28,7 +28,7 @@ def with_raw_response(self) -> HistoryResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return HistoryResourceWithRawResponse(self) @@ -37,7 +37,7 @@ def with_streaming_response(self) -> HistoryResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return HistoryResourceWithStreamingResponse(self) @@ -99,7 +99,7 @@ def with_raw_response(self) -> AsyncHistoryResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncHistoryResourceWithRawResponse(self) @@ -108,7 +108,7 @@ def with_streaming_response(self) -> AsyncHistoryResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncHistoryResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/coins/list.py b/src/coingecko_python/resources/coins/list.py index ab26738..fb48ec6 100644 --- a/src/coingecko_python/resources/coins/list.py +++ b/src/coingecko_python/resources/coins/list.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> ListResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return ListResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> ListResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return ListResourceWithStreamingResponse(self) @@ -121,7 +121,7 @@ def with_raw_response(self) -> AsyncListResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncListResourceWithRawResponse(self) @@ -130,7 +130,7 @@ def with_streaming_response(self) -> AsyncListResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncListResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/coins/market_chart.py b/src/coingecko_python/resources/coins/market_chart.py index b8c97f8..4e8656d 100644 --- a/src/coingecko_python/resources/coins/market_chart.py +++ b/src/coingecko_python/resources/coins/market_chart.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> MarketChartResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return MarketChartResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> MarketChartResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return MarketChartResourceWithStreamingResponse(self) @@ -220,7 +220,7 @@ def with_raw_response(self) -> AsyncMarketChartResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncMarketChartResourceWithRawResponse(self) @@ -229,7 +229,7 @@ def with_streaming_response(self) -> AsyncMarketChartResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncMarketChartResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/coins/markets.py b/src/coingecko_python/resources/coins/markets.py index ebf9901..934cf5f 100644 --- a/src/coingecko_python/resources/coins/markets.py +++ b/src/coingecko_python/resources/coins/markets.py @@ -30,7 +30,7 @@ def with_raw_response(self) -> MarketsResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return MarketsResourceWithRawResponse(self) @@ -39,7 +39,7 @@ def with_streaming_response(self) -> MarketsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return MarketsResourceWithStreamingResponse(self) @@ -206,7 +206,7 @@ def with_raw_response(self) -> AsyncMarketsResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncMarketsResourceWithRawResponse(self) @@ -215,7 +215,7 @@ def with_streaming_response(self) -> AsyncMarketsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncMarketsResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/coins/ohlc.py b/src/coingecko_python/resources/coins/ohlc.py index 952430b..b00e0fd 100644 --- a/src/coingecko_python/resources/coins/ohlc.py +++ b/src/coingecko_python/resources/coins/ohlc.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> OhlcResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return OhlcResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> OhlcResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return OhlcResourceWithStreamingResponse(self) @@ -192,7 +192,7 @@ def with_raw_response(self) -> AsyncOhlcResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncOhlcResourceWithRawResponse(self) @@ -201,7 +201,7 @@ def with_streaming_response(self) -> AsyncOhlcResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncOhlcResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/coins/tickers.py b/src/coingecko_python/resources/coins/tickers.py index d06ee50..f2bc4ab 100644 --- a/src/coingecko_python/resources/coins/tickers.py +++ b/src/coingecko_python/resources/coins/tickers.py @@ -30,7 +30,7 @@ def with_raw_response(self) -> TickersResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return TickersResourceWithRawResponse(self) @@ -39,7 +39,7 @@ def with_streaming_response(self) -> TickersResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return TickersResourceWithStreamingResponse(self) @@ -114,7 +114,7 @@ def with_raw_response(self) -> AsyncTickersResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncTickersResourceWithRawResponse(self) @@ -123,7 +123,7 @@ def with_streaming_response(self) -> AsyncTickersResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncTickersResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/coins/top_gainers_losers.py b/src/coingecko_python/resources/coins/top_gainers_losers.py index f492594..9c61f44 100644 --- a/src/coingecko_python/resources/coins/top_gainers_losers.py +++ b/src/coingecko_python/resources/coins/top_gainers_losers.py @@ -30,7 +30,7 @@ def with_raw_response(self) -> TopGainersLosersResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return TopGainersLosersResourceWithRawResponse(self) @@ -39,7 +39,7 @@ def with_streaming_response(self) -> TopGainersLosersResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return TopGainersLosersResourceWithStreamingResponse(self) @@ -104,7 +104,7 @@ def with_raw_response(self) -> AsyncTopGainersLosersResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncTopGainersLosersResourceWithRawResponse(self) @@ -113,7 +113,7 @@ def with_streaming_response(self) -> AsyncTopGainersLosersResourceWithStreamingR """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncTopGainersLosersResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/coins/total_supply_chart.py b/src/coingecko_python/resources/coins/total_supply_chart.py index cf5fe12..8851317 100644 --- a/src/coingecko_python/resources/coins/total_supply_chart.py +++ b/src/coingecko_python/resources/coins/total_supply_chart.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> TotalSupplyChartResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return TotalSupplyChartResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> TotalSupplyChartResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return TotalSupplyChartResourceWithStreamingResponse(self) @@ -152,7 +152,7 @@ def with_raw_response(self) -> AsyncTotalSupplyChartResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncTotalSupplyChartResourceWithRawResponse(self) @@ -161,7 +161,7 @@ def with_streaming_response(self) -> AsyncTotalSupplyChartResourceWithStreamingR """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncTotalSupplyChartResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/companies/companies.py b/src/coingecko_python/resources/companies/companies.py index 8a893c6..e62e250 100644 --- a/src/coingecko_python/resources/companies/companies.py +++ b/src/coingecko_python/resources/companies/companies.py @@ -27,7 +27,7 @@ def with_raw_response(self) -> CompaniesResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return CompaniesResourceWithRawResponse(self) @@ -36,7 +36,7 @@ def with_streaming_response(self) -> CompaniesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return CompaniesResourceWithStreamingResponse(self) @@ -52,7 +52,7 @@ def with_raw_response(self) -> AsyncCompaniesResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncCompaniesResourceWithRawResponse(self) @@ -61,7 +61,7 @@ def with_streaming_response(self) -> AsyncCompaniesResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncCompaniesResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/companies/public_treasury.py b/src/coingecko_python/resources/companies/public_treasury.py index 140b2cc..a6edeb6 100644 --- a/src/coingecko_python/resources/companies/public_treasury.py +++ b/src/coingecko_python/resources/companies/public_treasury.py @@ -28,7 +28,7 @@ def with_raw_response(self) -> PublicTreasuryResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return PublicTreasuryResourceWithRawResponse(self) @@ -37,7 +37,7 @@ def with_streaming_response(self) -> PublicTreasuryResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return PublicTreasuryResourceWithStreamingResponse(self) @@ -83,7 +83,7 @@ def with_raw_response(self) -> AsyncPublicTreasuryResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncPublicTreasuryResourceWithRawResponse(self) @@ -92,7 +92,7 @@ def with_streaming_response(self) -> AsyncPublicTreasuryResourceWithStreamingRes """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncPublicTreasuryResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/derivatives/derivatives.py b/src/coingecko_python/resources/derivatives/derivatives.py index f671ede..fb38262 100644 --- a/src/coingecko_python/resources/derivatives/derivatives.py +++ b/src/coingecko_python/resources/derivatives/derivatives.py @@ -38,7 +38,7 @@ def with_raw_response(self) -> DerivativesResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return DerivativesResourceWithRawResponse(self) @@ -47,7 +47,7 @@ def with_streaming_response(self) -> DerivativesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return DerivativesResourceWithStreamingResponse(self) @@ -85,7 +85,7 @@ def with_raw_response(self) -> AsyncDerivativesResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncDerivativesResourceWithRawResponse(self) @@ -94,7 +94,7 @@ def with_streaming_response(self) -> AsyncDerivativesResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncDerivativesResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/derivatives/exchanges.py b/src/coingecko_python/resources/derivatives/exchanges.py index 58d36d3..a40e4d3 100644 --- a/src/coingecko_python/resources/derivatives/exchanges.py +++ b/src/coingecko_python/resources/derivatives/exchanges.py @@ -32,7 +32,7 @@ def with_raw_response(self) -> ExchangesResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return ExchangesResourceWithRawResponse(self) @@ -41,7 +41,7 @@ def with_streaming_response(self) -> ExchangesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return ExchangesResourceWithStreamingResponse(self) @@ -175,7 +175,7 @@ def with_raw_response(self) -> AsyncExchangesResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncExchangesResourceWithRawResponse(self) @@ -184,7 +184,7 @@ def with_streaming_response(self) -> AsyncExchangesResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncExchangesResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/exchange_rates.py b/src/coingecko_python/resources/exchange_rates.py index 3013998..fcd6e85 100644 --- a/src/coingecko_python/resources/exchange_rates.py +++ b/src/coingecko_python/resources/exchange_rates.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> ExchangeRatesResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return ExchangeRatesResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> ExchangeRatesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return ExchangeRatesResourceWithStreamingResponse(self) @@ -66,7 +66,7 @@ def with_raw_response(self) -> AsyncExchangeRatesResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncExchangeRatesResourceWithRawResponse(self) @@ -75,7 +75,7 @@ def with_streaming_response(self) -> AsyncExchangeRatesResourceWithStreamingResp """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncExchangeRatesResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/exchanges/exchanges.py b/src/coingecko_python/resources/exchanges/exchanges.py index 63c3775..60a0917 100644 --- a/src/coingecko_python/resources/exchanges/exchanges.py +++ b/src/coingecko_python/resources/exchanges/exchanges.py @@ -56,7 +56,7 @@ def with_raw_response(self) -> ExchangesResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return ExchangesResourceWithRawResponse(self) @@ -65,7 +65,7 @@ def with_streaming_response(self) -> ExchangesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return ExchangesResourceWithStreamingResponse(self) @@ -204,7 +204,7 @@ def with_raw_response(self) -> AsyncExchangesResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncExchangesResourceWithRawResponse(self) @@ -213,7 +213,7 @@ def with_streaming_response(self) -> AsyncExchangesResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncExchangesResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/exchanges/tickers.py b/src/coingecko_python/resources/exchanges/tickers.py index 111bcad..62fa222 100644 --- a/src/coingecko_python/resources/exchanges/tickers.py +++ b/src/coingecko_python/resources/exchanges/tickers.py @@ -30,7 +30,7 @@ def with_raw_response(self) -> TickersResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return TickersResourceWithRawResponse(self) @@ -39,7 +39,7 @@ def with_streaming_response(self) -> TickersResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return TickersResourceWithStreamingResponse(self) @@ -115,7 +115,7 @@ def with_raw_response(self) -> AsyncTickersResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncTickersResourceWithRawResponse(self) @@ -124,7 +124,7 @@ def with_streaming_response(self) -> AsyncTickersResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncTickersResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/exchanges/volume_chart.py b/src/coingecko_python/resources/exchanges/volume_chart.py index 7216018..8232d40 100644 --- a/src/coingecko_python/resources/exchanges/volume_chart.py +++ b/src/coingecko_python/resources/exchanges/volume_chart.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> VolumeChartResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return VolumeChartResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> VolumeChartResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return VolumeChartResourceWithStreamingResponse(self) @@ -143,7 +143,7 @@ def with_raw_response(self) -> AsyncVolumeChartResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncVolumeChartResourceWithRawResponse(self) @@ -152,7 +152,7 @@ def with_streaming_response(self) -> AsyncVolumeChartResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncVolumeChartResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/global_/decentralized_finance_defi.py b/src/coingecko_python/resources/global_/decentralized_finance_defi.py index 15e1791..9c40e72 100644 --- a/src/coingecko_python/resources/global_/decentralized_finance_defi.py +++ b/src/coingecko_python/resources/global_/decentralized_finance_defi.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> DecentralizedFinanceDefiResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return DecentralizedFinanceDefiResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> DecentralizedFinanceDefiResourceWithStreami """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return DecentralizedFinanceDefiResourceWithStreamingResponse(self) @@ -69,7 +69,7 @@ def with_raw_response(self) -> AsyncDecentralizedFinanceDefiResourceWithRawRespo 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncDecentralizedFinanceDefiResourceWithRawResponse(self) @@ -78,7 +78,7 @@ def with_streaming_response(self) -> AsyncDecentralizedFinanceDefiResourceWithSt """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncDecentralizedFinanceDefiResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/global_/global_.py b/src/coingecko_python/resources/global_/global_.py index 8afd49b..048807f 100644 --- a/src/coingecko_python/resources/global_/global_.py +++ b/src/coingecko_python/resources/global_/global_.py @@ -50,7 +50,7 @@ def with_raw_response(self) -> GlobalResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return GlobalResourceWithRawResponse(self) @@ -59,7 +59,7 @@ def with_streaming_response(self) -> GlobalResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return GlobalResourceWithStreamingResponse(self) @@ -101,7 +101,7 @@ def with_raw_response(self) -> AsyncGlobalResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncGlobalResourceWithRawResponse(self) @@ -110,7 +110,7 @@ def with_streaming_response(self) -> AsyncGlobalResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncGlobalResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/global_/market_cap_chart.py b/src/coingecko_python/resources/global_/market_cap_chart.py index bf26a4a..2cb0948 100644 --- a/src/coingecko_python/resources/global_/market_cap_chart.py +++ b/src/coingecko_python/resources/global_/market_cap_chart.py @@ -30,7 +30,7 @@ def with_raw_response(self) -> MarketCapChartResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return MarketCapChartResourceWithRawResponse(self) @@ -39,7 +39,7 @@ def with_streaming_response(self) -> MarketCapChartResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return MarketCapChartResourceWithStreamingResponse(self) @@ -99,7 +99,7 @@ def with_raw_response(self) -> AsyncMarketCapChartResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncMarketCapChartResourceWithRawResponse(self) @@ -108,7 +108,7 @@ def with_streaming_response(self) -> AsyncMarketCapChartResourceWithStreamingRes """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncMarketCapChartResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/key.py b/src/coingecko_python/resources/key.py index a1481ae..3f70e20 100644 --- a/src/coingecko_python/resources/key.py +++ b/src/coingecko_python/resources/key.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> KeyResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return KeyResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> KeyResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return KeyResourceWithStreamingResponse(self) @@ -69,7 +69,7 @@ def with_raw_response(self) -> AsyncKeyResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncKeyResourceWithRawResponse(self) @@ -78,7 +78,7 @@ def with_streaming_response(self) -> AsyncKeyResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncKeyResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/nfts/contract/contract.py b/src/coingecko_python/resources/nfts/contract/contract.py index e168391..be30b08 100644 --- a/src/coingecko_python/resources/nfts/contract/contract.py +++ b/src/coingecko_python/resources/nfts/contract/contract.py @@ -38,7 +38,7 @@ def with_raw_response(self) -> ContractResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return ContractResourceWithRawResponse(self) @@ -47,7 +47,7 @@ def with_streaming_response(self) -> ContractResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return ContractResourceWithStreamingResponse(self) @@ -101,7 +101,7 @@ def with_raw_response(self) -> AsyncContractResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncContractResourceWithRawResponse(self) @@ -110,7 +110,7 @@ def with_streaming_response(self) -> AsyncContractResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncContractResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/nfts/contract/market_chart.py b/src/coingecko_python/resources/nfts/contract/market_chart.py index 959881a..be5fb8d 100644 --- a/src/coingecko_python/resources/nfts/contract/market_chart.py +++ b/src/coingecko_python/resources/nfts/contract/market_chart.py @@ -28,7 +28,7 @@ def with_raw_response(self) -> MarketChartResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return MarketChartResourceWithRawResponse(self) @@ -37,7 +37,7 @@ def with_streaming_response(self) -> MarketChartResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return MarketChartResourceWithStreamingResponse(self) @@ -94,7 +94,7 @@ def with_raw_response(self) -> AsyncMarketChartResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncMarketChartResourceWithRawResponse(self) @@ -103,7 +103,7 @@ def with_streaming_response(self) -> AsyncMarketChartResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncMarketChartResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/nfts/market_chart.py b/src/coingecko_python/resources/nfts/market_chart.py index 550d6a5..31063df 100644 --- a/src/coingecko_python/resources/nfts/market_chart.py +++ b/src/coingecko_python/resources/nfts/market_chart.py @@ -28,7 +28,7 @@ def with_raw_response(self) -> MarketChartResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return MarketChartResourceWithRawResponse(self) @@ -37,7 +37,7 @@ def with_streaming_response(self) -> MarketChartResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return MarketChartResourceWithStreamingResponse(self) @@ -91,7 +91,7 @@ def with_raw_response(self) -> AsyncMarketChartResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncMarketChartResourceWithRawResponse(self) @@ -100,7 +100,7 @@ def with_streaming_response(self) -> AsyncMarketChartResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncMarketChartResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/nfts/nfts.py b/src/coingecko_python/resources/nfts/nfts.py index b1baded..011c7ff 100644 --- a/src/coingecko_python/resources/nfts/nfts.py +++ b/src/coingecko_python/resources/nfts/nfts.py @@ -68,7 +68,7 @@ def with_raw_response(self) -> NFTsResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return NFTsResourceWithRawResponse(self) @@ -77,7 +77,7 @@ def with_streaming_response(self) -> NFTsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return NFTsResourceWithStreamingResponse(self) @@ -264,7 +264,7 @@ def with_raw_response(self) -> AsyncNFTsResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncNFTsResourceWithRawResponse(self) @@ -273,7 +273,7 @@ def with_streaming_response(self) -> AsyncNFTsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncNFTsResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/nfts/tickers.py b/src/coingecko_python/resources/nfts/tickers.py index 4de3983..63e13ec 100644 --- a/src/coingecko_python/resources/nfts/tickers.py +++ b/src/coingecko_python/resources/nfts/tickers.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> TickersResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return TickersResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> TickersResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return TickersResourceWithStreamingResponse(self) @@ -81,7 +81,7 @@ def with_raw_response(self) -> AsyncTickersResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncTickersResourceWithRawResponse(self) @@ -90,7 +90,7 @@ def with_streaming_response(self) -> AsyncTickersResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncTickersResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/categories.py b/src/coingecko_python/resources/onchain/categories.py index 99f1d66..1b9e332 100644 --- a/src/coingecko_python/resources/onchain/categories.py +++ b/src/coingecko_python/resources/onchain/categories.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> CategoriesResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return CategoriesResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> CategoriesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return CategoriesResourceWithStreamingResponse(self) @@ -174,7 +174,7 @@ def with_raw_response(self) -> AsyncCategoriesResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncCategoriesResourceWithRawResponse(self) @@ -183,7 +183,7 @@ def with_streaming_response(self) -> AsyncCategoriesResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncCategoriesResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/networks/dexes.py b/src/coingecko_python/resources/onchain/networks/dexes.py index 40e89c7..d14a467 100644 --- a/src/coingecko_python/resources/onchain/networks/dexes.py +++ b/src/coingecko_python/resources/onchain/networks/dexes.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> DexesResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return DexesResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> DexesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return DexesResourceWithStreamingResponse(self) @@ -151,7 +151,7 @@ def with_raw_response(self) -> AsyncDexesResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncDexesResourceWithRawResponse(self) @@ -160,7 +160,7 @@ def with_streaming_response(self) -> AsyncDexesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncDexesResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/networks/networks.py b/src/coingecko_python/resources/onchain/networks/networks.py index abadfe2..dabdce4 100644 --- a/src/coingecko_python/resources/onchain/networks/networks.py +++ b/src/coingecko_python/resources/onchain/networks/networks.py @@ -88,7 +88,7 @@ def with_raw_response(self) -> NetworksResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return NetworksResourceWithRawResponse(self) @@ -97,7 +97,7 @@ def with_streaming_response(self) -> NetworksResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return NetworksResourceWithStreamingResponse(self) @@ -167,7 +167,7 @@ def with_raw_response(self) -> AsyncNetworksResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncNetworksResourceWithRawResponse(self) @@ -176,7 +176,7 @@ def with_streaming_response(self) -> AsyncNetworksResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncNetworksResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/networks/new_pools.py b/src/coingecko_python/resources/onchain/networks/new_pools.py index 8630d34..4eeeb0d 100644 --- a/src/coingecko_python/resources/onchain/networks/new_pools.py +++ b/src/coingecko_python/resources/onchain/networks/new_pools.py @@ -29,7 +29,7 @@ def with_raw_response(self) -> NewPoolsResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return NewPoolsResourceWithRawResponse(self) @@ -38,7 +38,7 @@ def with_streaming_response(self) -> NewPoolsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return NewPoolsResourceWithStreamingResponse(self) @@ -149,7 +149,7 @@ def with_raw_response(self) -> AsyncNewPoolsResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncNewPoolsResourceWithRawResponse(self) @@ -158,7 +158,7 @@ def with_streaming_response(self) -> AsyncNewPoolsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncNewPoolsResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/networks/pools/info.py b/src/coingecko_python/resources/onchain/networks/pools/info.py index dd10fee..247f743 100644 --- a/src/coingecko_python/resources/onchain/networks/pools/info.py +++ b/src/coingecko_python/resources/onchain/networks/pools/info.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> InfoResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return InfoResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> InfoResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return InfoResourceWithStreamingResponse(self) @@ -85,7 +85,7 @@ def with_raw_response(self) -> AsyncInfoResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncInfoResourceWithRawResponse(self) @@ -94,7 +94,7 @@ def with_streaming_response(self) -> AsyncInfoResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncInfoResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/networks/pools/multi.py b/src/coingecko_python/resources/onchain/networks/pools/multi.py index 1c99684..6753c40 100644 --- a/src/coingecko_python/resources/onchain/networks/pools/multi.py +++ b/src/coingecko_python/resources/onchain/networks/pools/multi.py @@ -28,7 +28,7 @@ def with_raw_response(self) -> MultiResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return MultiResourceWithRawResponse(self) @@ -37,7 +37,7 @@ def with_streaming_response(self) -> MultiResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return MultiResourceWithStreamingResponse(self) @@ -94,7 +94,7 @@ def with_raw_response(self) -> AsyncMultiResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncMultiResourceWithRawResponse(self) @@ -103,7 +103,7 @@ def with_streaming_response(self) -> AsyncMultiResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncMultiResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/networks/pools/ohlcv.py b/src/coingecko_python/resources/onchain/networks/pools/ohlcv.py index cb401d2..ae69326 100644 --- a/src/coingecko_python/resources/onchain/networks/pools/ohlcv.py +++ b/src/coingecko_python/resources/onchain/networks/pools/ohlcv.py @@ -30,7 +30,7 @@ def with_raw_response(self) -> OhlcvResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return OhlcvResourceWithRawResponse(self) @@ -39,7 +39,7 @@ def with_streaming_response(self) -> OhlcvResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return OhlcvResourceWithStreamingResponse(self) @@ -122,7 +122,7 @@ def with_raw_response(self) -> AsyncOhlcvResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncOhlcvResourceWithRawResponse(self) @@ -131,7 +131,7 @@ def with_streaming_response(self) -> AsyncOhlcvResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncOhlcvResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/networks/pools/pools.py b/src/coingecko_python/resources/onchain/networks/pools/pools.py index d2ea76b..cec1805 100644 --- a/src/coingecko_python/resources/onchain/networks/pools/pools.py +++ b/src/coingecko_python/resources/onchain/networks/pools/pools.py @@ -79,7 +79,7 @@ def with_raw_response(self) -> PoolsResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return PoolsResourceWithRawResponse(self) @@ -88,7 +88,7 @@ def with_streaming_response(self) -> PoolsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return PoolsResourceWithStreamingResponse(self) @@ -216,7 +216,7 @@ def with_raw_response(self) -> AsyncPoolsResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncPoolsResourceWithRawResponse(self) @@ -225,7 +225,7 @@ def with_streaming_response(self) -> AsyncPoolsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncPoolsResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/networks/pools/trades.py b/src/coingecko_python/resources/onchain/networks/pools/trades.py index 8888a58..985d054 100644 --- a/src/coingecko_python/resources/onchain/networks/pools/trades.py +++ b/src/coingecko_python/resources/onchain/networks/pools/trades.py @@ -28,7 +28,7 @@ def with_raw_response(self) -> TradesResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return TradesResourceWithRawResponse(self) @@ -37,7 +37,7 @@ def with_streaming_response(self) -> TradesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return TradesResourceWithStreamingResponse(self) @@ -103,7 +103,7 @@ def with_raw_response(self) -> AsyncTradesResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncTradesResourceWithRawResponse(self) @@ -112,7 +112,7 @@ def with_streaming_response(self) -> AsyncTradesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncTradesResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/networks/tokens/info.py b/src/coingecko_python/resources/onchain/networks/tokens/info.py index 882925f..88a758d 100644 --- a/src/coingecko_python/resources/onchain/networks/tokens/info.py +++ b/src/coingecko_python/resources/onchain/networks/tokens/info.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> InfoResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return InfoResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> InfoResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return InfoResourceWithStreamingResponse(self) @@ -85,7 +85,7 @@ def with_raw_response(self) -> AsyncInfoResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncInfoResourceWithRawResponse(self) @@ -94,7 +94,7 @@ def with_streaming_response(self) -> AsyncInfoResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncInfoResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/networks/tokens/multi.py b/src/coingecko_python/resources/onchain/networks/tokens/multi.py index 95155e5..3f87f58 100644 --- a/src/coingecko_python/resources/onchain/networks/tokens/multi.py +++ b/src/coingecko_python/resources/onchain/networks/tokens/multi.py @@ -30,7 +30,7 @@ def with_raw_response(self) -> MultiResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return MultiResourceWithRawResponse(self) @@ -39,7 +39,7 @@ def with_streaming_response(self) -> MultiResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return MultiResourceWithStreamingResponse(self) @@ -95,7 +95,7 @@ def with_raw_response(self) -> AsyncMultiResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncMultiResourceWithRawResponse(self) @@ -104,7 +104,7 @@ def with_streaming_response(self) -> AsyncMultiResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncMultiResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/networks/tokens/pools.py b/src/coingecko_python/resources/onchain/networks/tokens/pools.py index 7057428..73fc1d1 100644 --- a/src/coingecko_python/resources/onchain/networks/tokens/pools.py +++ b/src/coingecko_python/resources/onchain/networks/tokens/pools.py @@ -30,7 +30,7 @@ def with_raw_response(self) -> PoolsResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return PoolsResourceWithRawResponse(self) @@ -39,7 +39,7 @@ def with_streaming_response(self) -> PoolsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return PoolsResourceWithStreamingResponse(self) @@ -110,7 +110,7 @@ def with_raw_response(self) -> AsyncPoolsResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncPoolsResourceWithRawResponse(self) @@ -119,7 +119,7 @@ def with_streaming_response(self) -> AsyncPoolsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncPoolsResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/networks/tokens/tokens.py b/src/coingecko_python/resources/onchain/networks/tokens/tokens.py index a924c7b..ff52c99 100644 --- a/src/coingecko_python/resources/onchain/networks/tokens/tokens.py +++ b/src/coingecko_python/resources/onchain/networks/tokens/tokens.py @@ -78,7 +78,7 @@ def with_raw_response(self) -> TokensResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return TokensResourceWithRawResponse(self) @@ -87,7 +87,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/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return TokensResourceWithStreamingResponse(self) @@ -159,7 +159,7 @@ def with_raw_response(self) -> AsyncTokensResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncTokensResourceWithRawResponse(self) @@ -168,7 +168,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/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncTokensResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/networks/tokens/top_holders.py b/src/coingecko_python/resources/onchain/networks/tokens/top_holders.py index b8d5fd5..579d6c5 100644 --- a/src/coingecko_python/resources/onchain/networks/tokens/top_holders.py +++ b/src/coingecko_python/resources/onchain/networks/tokens/top_holders.py @@ -28,7 +28,7 @@ def with_raw_response(self) -> TopHoldersResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return TopHoldersResourceWithRawResponse(self) @@ -37,7 +37,7 @@ def with_streaming_response(self) -> TopHoldersResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return TopHoldersResourceWithStreamingResponse(self) @@ -94,7 +94,7 @@ def with_raw_response(self) -> AsyncTopHoldersResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncTopHoldersResourceWithRawResponse(self) @@ -103,7 +103,7 @@ def with_streaming_response(self) -> AsyncTopHoldersResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncTopHoldersResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/networks/trending_pools.py b/src/coingecko_python/resources/onchain/networks/trending_pools.py index 2709555..f47b4e3 100644 --- a/src/coingecko_python/resources/onchain/networks/trending_pools.py +++ b/src/coingecko_python/resources/onchain/networks/trending_pools.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> TrendingPoolsResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return TrendingPoolsResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> TrendingPoolsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return TrendingPoolsResourceWithStreamingResponse(self) @@ -160,7 +160,7 @@ def with_raw_response(self) -> AsyncTrendingPoolsResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncTrendingPoolsResourceWithRawResponse(self) @@ -169,7 +169,7 @@ def with_streaming_response(self) -> AsyncTrendingPoolsResourceWithStreamingResp """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncTrendingPoolsResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/onchain.py b/src/coingecko_python/resources/onchain/onchain.py index eb7cda6..df153ba 100644 --- a/src/coingecko_python/resources/onchain/onchain.py +++ b/src/coingecko_python/resources/onchain/onchain.py @@ -87,7 +87,7 @@ def with_raw_response(self) -> OnchainResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return OnchainResourceWithRawResponse(self) @@ -96,7 +96,7 @@ def with_streaming_response(self) -> OnchainResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return OnchainResourceWithStreamingResponse(self) @@ -132,7 +132,7 @@ def with_raw_response(self) -> AsyncOnchainResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncOnchainResourceWithRawResponse(self) @@ -141,7 +141,7 @@ def with_streaming_response(self) -> AsyncOnchainResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncOnchainResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/pools/megafilter.py b/src/coingecko_python/resources/onchain/pools/megafilter.py index 333c5d6..5a1ff76 100644 --- a/src/coingecko_python/resources/onchain/pools/megafilter.py +++ b/src/coingecko_python/resources/onchain/pools/megafilter.py @@ -30,7 +30,7 @@ def with_raw_response(self) -> MegafilterResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return MegafilterResourceWithRawResponse(self) @@ -39,7 +39,7 @@ def with_streaming_response(self) -> MegafilterResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return MegafilterResourceWithStreamingResponse(self) @@ -212,7 +212,7 @@ def with_raw_response(self) -> AsyncMegafilterResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncMegafilterResourceWithRawResponse(self) @@ -221,7 +221,7 @@ def with_streaming_response(self) -> AsyncMegafilterResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncMegafilterResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/pools/pools.py b/src/coingecko_python/resources/onchain/pools/pools.py index e9ea175..91fe359 100644 --- a/src/coingecko_python/resources/onchain/pools/pools.py +++ b/src/coingecko_python/resources/onchain/pools/pools.py @@ -39,7 +39,7 @@ def with_raw_response(self) -> PoolsResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return PoolsResourceWithRawResponse(self) @@ -48,7 +48,7 @@ def with_streaming_response(self) -> PoolsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return PoolsResourceWithStreamingResponse(self) @@ -68,7 +68,7 @@ def with_raw_response(self) -> AsyncPoolsResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncPoolsResourceWithRawResponse(self) @@ -77,7 +77,7 @@ def with_streaming_response(self) -> AsyncPoolsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncPoolsResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/pools/trending_search.py b/src/coingecko_python/resources/onchain/pools/trending_search.py index 47c0864..ada1a01 100644 --- a/src/coingecko_python/resources/onchain/pools/trending_search.py +++ b/src/coingecko_python/resources/onchain/pools/trending_search.py @@ -28,7 +28,7 @@ def with_raw_response(self) -> TrendingSearchResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return TrendingSearchResourceWithRawResponse(self) @@ -37,7 +37,7 @@ def with_streaming_response(self) -> TrendingSearchResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return TrendingSearchResourceWithStreamingResponse(self) @@ -97,7 +97,7 @@ def with_raw_response(self) -> AsyncTrendingSearchResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncTrendingSearchResourceWithRawResponse(self) @@ -106,7 +106,7 @@ def with_streaming_response(self) -> AsyncTrendingSearchResourceWithStreamingRes """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncTrendingSearchResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/search/pools.py b/src/coingecko_python/resources/onchain/search/pools.py index c5d1952..50a1db6 100644 --- a/src/coingecko_python/resources/onchain/search/pools.py +++ b/src/coingecko_python/resources/onchain/search/pools.py @@ -28,7 +28,7 @@ def with_raw_response(self) -> PoolsResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return PoolsResourceWithRawResponse(self) @@ -37,7 +37,7 @@ def with_streaming_response(self) -> PoolsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return PoolsResourceWithStreamingResponse(self) @@ -104,7 +104,7 @@ def with_raw_response(self) -> AsyncPoolsResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncPoolsResourceWithRawResponse(self) @@ -113,7 +113,7 @@ def with_streaming_response(self) -> AsyncPoolsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncPoolsResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/search/search.py b/src/coingecko_python/resources/onchain/search/search.py index 6ede9b1..2db2dab 100644 --- a/src/coingecko_python/resources/onchain/search/search.py +++ b/src/coingecko_python/resources/onchain/search/search.py @@ -27,7 +27,7 @@ def with_raw_response(self) -> SearchResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return SearchResourceWithRawResponse(self) @@ -36,7 +36,7 @@ def with_streaming_response(self) -> SearchResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return SearchResourceWithStreamingResponse(self) @@ -52,7 +52,7 @@ def with_raw_response(self) -> AsyncSearchResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncSearchResourceWithRawResponse(self) @@ -61,7 +61,7 @@ def with_streaming_response(self) -> AsyncSearchResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncSearchResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/simple/networks/networks.py b/src/coingecko_python/resources/onchain/simple/networks/networks.py index 4bb0074..163c77c 100644 --- a/src/coingecko_python/resources/onchain/simple/networks/networks.py +++ b/src/coingecko_python/resources/onchain/simple/networks/networks.py @@ -27,7 +27,7 @@ def with_raw_response(self) -> NetworksResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return NetworksResourceWithRawResponse(self) @@ -36,7 +36,7 @@ def with_streaming_response(self) -> NetworksResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return NetworksResourceWithStreamingResponse(self) @@ -52,7 +52,7 @@ def with_raw_response(self) -> AsyncNetworksResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncNetworksResourceWithRawResponse(self) @@ -61,7 +61,7 @@ def with_streaming_response(self) -> AsyncNetworksResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncNetworksResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/simple/networks/token_price.py b/src/coingecko_python/resources/onchain/simple/networks/token_price.py index 78822b7..9e43435 100644 --- a/src/coingecko_python/resources/onchain/simple/networks/token_price.py +++ b/src/coingecko_python/resources/onchain/simple/networks/token_price.py @@ -28,7 +28,7 @@ def with_raw_response(self) -> TokenPriceResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return TokenPriceResourceWithRawResponse(self) @@ -37,7 +37,7 @@ def with_streaming_response(self) -> TokenPriceResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return TokenPriceResourceWithStreamingResponse(self) @@ -114,7 +114,7 @@ def with_raw_response(self) -> AsyncTokenPriceResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncTokenPriceResourceWithRawResponse(self) @@ -123,7 +123,7 @@ def with_streaming_response(self) -> AsyncTokenPriceResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncTokenPriceResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/simple/simple.py b/src/coingecko_python/resources/onchain/simple/simple.py index 41900bc..02f9cbe 100644 --- a/src/coingecko_python/resources/onchain/simple/simple.py +++ b/src/coingecko_python/resources/onchain/simple/simple.py @@ -27,7 +27,7 @@ def with_raw_response(self) -> SimpleResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return SimpleResourceWithRawResponse(self) @@ -36,7 +36,7 @@ def with_streaming_response(self) -> SimpleResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return SimpleResourceWithStreamingResponse(self) @@ -52,7 +52,7 @@ def with_raw_response(self) -> AsyncSimpleResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncSimpleResourceWithRawResponse(self) @@ -61,7 +61,7 @@ def with_streaming_response(self) -> AsyncSimpleResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncSimpleResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/tokens/info_recently_updated.py b/src/coingecko_python/resources/onchain/tokens/info_recently_updated.py index a5d29db..4a35494 100644 --- a/src/coingecko_python/resources/onchain/tokens/info_recently_updated.py +++ b/src/coingecko_python/resources/onchain/tokens/info_recently_updated.py @@ -30,7 +30,7 @@ def with_raw_response(self) -> InfoRecentlyUpdatedResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return InfoRecentlyUpdatedResourceWithRawResponse(self) @@ -39,7 +39,7 @@ def with_streaming_response(self) -> InfoRecentlyUpdatedResourceWithStreamingRes """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return InfoRecentlyUpdatedResourceWithStreamingResponse(self) @@ -100,7 +100,7 @@ def with_raw_response(self) -> AsyncInfoRecentlyUpdatedResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncInfoRecentlyUpdatedResourceWithRawResponse(self) @@ -109,7 +109,7 @@ def with_streaming_response(self) -> AsyncInfoRecentlyUpdatedResourceWithStreami """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncInfoRecentlyUpdatedResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/onchain/tokens/tokens.py b/src/coingecko_python/resources/onchain/tokens/tokens.py index 6de9f88..efbb585 100644 --- a/src/coingecko_python/resources/onchain/tokens/tokens.py +++ b/src/coingecko_python/resources/onchain/tokens/tokens.py @@ -27,7 +27,7 @@ def with_raw_response(self) -> TokensResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return TokensResourceWithRawResponse(self) @@ -36,7 +36,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/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return TokensResourceWithStreamingResponse(self) @@ -52,7 +52,7 @@ def with_raw_response(self) -> AsyncTokensResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncTokensResourceWithRawResponse(self) @@ -61,7 +61,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/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncTokensResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/ping.py b/src/coingecko_python/resources/ping.py index f3b5183..c24f6ba 100644 --- a/src/coingecko_python/resources/ping.py +++ b/src/coingecko_python/resources/ping.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> PingResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return PingResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> PingResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return PingResourceWithStreamingResponse(self) @@ -66,7 +66,7 @@ def with_raw_response(self) -> AsyncPingResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncPingResourceWithRawResponse(self) @@ -75,7 +75,7 @@ def with_streaming_response(self) -> AsyncPingResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncPingResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/search/search.py b/src/coingecko_python/resources/search/search.py index 6db412d..f47fa29 100644 --- a/src/coingecko_python/resources/search/search.py +++ b/src/coingecko_python/resources/search/search.py @@ -40,7 +40,7 @@ def with_raw_response(self) -> SearchResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return SearchResourceWithRawResponse(self) @@ -49,7 +49,7 @@ def with_streaming_response(self) -> SearchResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return SearchResourceWithStreamingResponse(self) @@ -103,7 +103,7 @@ def with_raw_response(self) -> AsyncSearchResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncSearchResourceWithRawResponse(self) @@ -112,7 +112,7 @@ def with_streaming_response(self) -> AsyncSearchResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncSearchResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/search/trending.py b/src/coingecko_python/resources/search/trending.py index 1148008..440171a 100644 --- a/src/coingecko_python/resources/search/trending.py +++ b/src/coingecko_python/resources/search/trending.py @@ -28,7 +28,7 @@ def with_raw_response(self) -> TrendingResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return TrendingResourceWithRawResponse(self) @@ -37,7 +37,7 @@ def with_streaming_response(self) -> TrendingResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return TrendingResourceWithStreamingResponse(self) @@ -89,7 +89,7 @@ def with_raw_response(self) -> AsyncTrendingResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncTrendingResourceWithRawResponse(self) @@ -98,7 +98,7 @@ def with_streaming_response(self) -> AsyncTrendingResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncTrendingResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/simple/price.py b/src/coingecko_python/resources/simple/price.py index 1f39c64..7be0dee 100644 --- a/src/coingecko_python/resources/simple/price.py +++ b/src/coingecko_python/resources/simple/price.py @@ -30,7 +30,7 @@ def with_raw_response(self) -> PriceResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return PriceResourceWithRawResponse(self) @@ -39,7 +39,7 @@ def with_streaming_response(self) -> PriceResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return PriceResourceWithStreamingResponse(self) @@ -156,7 +156,7 @@ def with_raw_response(self) -> AsyncPriceResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncPriceResourceWithRawResponse(self) @@ -165,7 +165,7 @@ def with_streaming_response(self) -> AsyncPriceResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncPriceResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/simple/simple.py b/src/coingecko_python/resources/simple/simple.py index d611d94..a5fd1bd 100644 --- a/src/coingecko_python/resources/simple/simple.py +++ b/src/coingecko_python/resources/simple/simple.py @@ -51,7 +51,7 @@ def with_raw_response(self) -> SimpleResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return SimpleResourceWithRawResponse(self) @@ -60,7 +60,7 @@ def with_streaming_response(self) -> SimpleResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return SimpleResourceWithStreamingResponse(self) @@ -84,7 +84,7 @@ def with_raw_response(self) -> AsyncSimpleResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncSimpleResourceWithRawResponse(self) @@ -93,7 +93,7 @@ def with_streaming_response(self) -> AsyncSimpleResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncSimpleResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/simple/supported_vs_currencies.py b/src/coingecko_python/resources/simple/supported_vs_currencies.py index dd56078..4b3104d 100644 --- a/src/coingecko_python/resources/simple/supported_vs_currencies.py +++ b/src/coingecko_python/resources/simple/supported_vs_currencies.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> SupportedVsCurrenciesResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return SupportedVsCurrenciesResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> SupportedVsCurrenciesResourceWithStreamingR """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return SupportedVsCurrenciesResourceWithStreamingResponse(self) @@ -66,7 +66,7 @@ def with_raw_response(self) -> AsyncSupportedVsCurrenciesResourceWithRawResponse 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncSupportedVsCurrenciesResourceWithRawResponse(self) @@ -75,7 +75,7 @@ def with_streaming_response(self) -> AsyncSupportedVsCurrenciesResourceWithStrea """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncSupportedVsCurrenciesResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/simple/token_price.py b/src/coingecko_python/resources/simple/token_price.py index dc41a73..f9f884f 100644 --- a/src/coingecko_python/resources/simple/token_price.py +++ b/src/coingecko_python/resources/simple/token_price.py @@ -30,7 +30,7 @@ def with_raw_response(self) -> TokenPriceResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return TokenPriceResourceWithRawResponse(self) @@ -39,7 +39,7 @@ def with_streaming_response(self) -> TokenPriceResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return TokenPriceResourceWithStreamingResponse(self) @@ -146,7 +146,7 @@ def with_raw_response(self) -> AsyncTokenPriceResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncTokenPriceResourceWithRawResponse(self) @@ -155,7 +155,7 @@ def with_streaming_response(self) -> AsyncTokenPriceResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncTokenPriceResourceWithStreamingResponse(self) diff --git a/src/coingecko_python/resources/token_lists.py b/src/coingecko_python/resources/token_lists.py index b81b5fc..b927f22 100644 --- a/src/coingecko_python/resources/token_lists.py +++ b/src/coingecko_python/resources/token_lists.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> TokenListsResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return TokenListsResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> TokenListsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return TokenListsResourceWithStreamingResponse(self) @@ -82,7 +82,7 @@ def with_raw_response(self) -> AsyncTokenListsResourceWithRawResponse: 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/coingecko-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/coingecko/coingecko-python#accessing-raw-response-data-eg-headers """ return AsyncTokenListsResourceWithRawResponse(self) @@ -91,7 +91,7 @@ def with_streaming_response(self) -> AsyncTokenListsResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/coingecko-python#with_streaming_response + For more information, see https://www.github.com/coingecko/coingecko-python#with_streaming_response """ return AsyncTokenListsResourceWithStreamingResponse(self)