Skip to content

Commit a258db0

Browse files
chore: update SDK settings
1 parent 658ca27 commit a258db0

27 files changed

Lines changed: 97 additions & 97 deletions

.github/workflows/publish-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This workflow is triggered when a GitHub release is created.
22
# It can also be run manually to re-publish to PyPI in case it failed for some reason.
3-
# You can run this workflow by navigating to https://www.github.com/cryptechdev/stainless-api-v2-python/actions/workflows/publish-pypi.yml
3+
# You can run this workflow by navigating to https://www.github.com/cryptechdev/neptune-api-v2-python/actions/workflows/publish-pypi.yml
44
name: Publish PyPI
55
on:
66
workflow_dispatch:

.github/workflows/release-doctor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
release_doctor:
1010
name: release doctor
1111
runs-on: ubuntu-latest
12-
if: github.repository == 'cryptechdev/stainless-api-v2-python' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
12+
if: github.repository == 'cryptechdev/neptune-api-v2-python' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
1313

1414
steps:
1515
- uses: actions/checkout@v6

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 47
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cryptech%2Fneptune-api-v2-9048b9a34641ce9f489cc9813115c2cbe53ba4e19fec4d4be8ad50cc4c6dc955.yml
33
openapi_spec_hash: 90a2e162ca6a44232297cba2c5017476
4-
config_hash: da42ffa688c006ab6ebd3493c9dfb0c6
4+
config_hash: c0eef50aebf8314784456d5c6f539ce5

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ If you’d like to use the repository from source, you can either install from g
6262
To install via git:
6363

6464
```sh
65-
$ pip install git+ssh://git@github.com/cryptechdev/stainless-api-v2-python.git
65+
$ pip install git+ssh://git@github.com/cryptechdev/neptune-api-v2-python.git
6666
```
6767

6868
Alternatively, you can build from source and install the wheel file:
@@ -113,7 +113,7 @@ the changes aren't made through the automated pipeline, you may want to make rel
113113

114114
### Publish with a GitHub workflow
115115

116-
You can release to package managers by using [the `Publish PyPI` GitHub action](https://www.github.com/cryptechdev/stainless-api-v2-python/actions/workflows/publish-pypi.yml). This requires a setup organization or repository secret to be set up.
116+
You can release to package managers by using [the `Publish PyPI` GitHub action](https://www.github.com/cryptechdev/neptune-api-v2-python/actions/workflows/publish-pypi.yml). This requires a setup organization or repository secret to be set up.
117117

118118
### Publish manually
119119

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The full API of this library can be found in [api.md](api.md).
1717

1818
```sh
1919
# install from the production repo
20-
pip install git+ssh://git@github.com/cryptechdev/stainless-api-v2-python.git
20+
pip install git+ssh://git@github.com/cryptechdev/neptune-api-v2-python.git
2121
```
2222

2323
> [!NOTE]
@@ -65,7 +65,7 @@ You can enable this by installing `aiohttp`:
6565

6666
```sh
6767
# install from the production repo
68-
pip install 'neptune_api_v2[aiohttp] @ git+ssh://git@github.com/cryptechdev/stainless-api-v2-python.git'
68+
pip install 'neptune_api_v2[aiohttp] @ git+ssh://git@github.com/cryptechdev/neptune-api-v2-python.git'
6969
```
7070

7171
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
@@ -226,9 +226,9 @@ status = response.parse() # get the object that `status.check_health()` would h
226226
print(status.status)
227227
```
228228

229-
These methods return an [`APIResponse`](https://github.com/cryptechdev/stainless-api-v2-python/tree/main/src/neptune_api_v2/_response.py) object.
229+
These methods return an [`APIResponse`](https://github.com/cryptechdev/neptune-api-v2-python/tree/main/src/neptune_api_v2/_response.py) object.
230230

231-
The async client returns an [`AsyncAPIResponse`](https://github.com/cryptechdev/stainless-api-v2-python/tree/main/src/neptune_api_v2/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
231+
The async client returns an [`AsyncAPIResponse`](https://github.com/cryptechdev/neptune-api-v2-python/tree/main/src/neptune_api_v2/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
232232

233233
#### `.with_streaming_response`
234234

@@ -332,7 +332,7 @@ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) con
332332

333333
We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
334334

335-
We are keen for your feedback; please open an [issue](https://www.github.com/cryptechdev/stainless-api-v2-python/issues) with questions, bugs, or suggestions.
335+
We are keen for your feedback; please open an [issue](https://www.github.com/cryptechdev/neptune-api-v2-python/issues) with questions, bugs, or suggestions.
336336

337337
### Determining the installed version
338338

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ classifiers = [
3737
]
3838

3939
[project.urls]
40-
Homepage = "https://github.com/cryptechdev/stainless-api-v2-python"
41-
Repository = "https://github.com/cryptechdev/stainless-api-v2-python"
40+
Homepage = "https://github.com/cryptechdev/neptune-api-v2-python"
41+
Repository = "https://github.com/cryptechdev/neptune-api-v2-python"
4242

4343
[project.optional-dependencies]
4444
aiohttp = ["aiohttp", "httpx_aiohttp>=0.1.9"]
@@ -112,7 +112,7 @@ path = "README.md"
112112
[[tool.hatch.metadata.hooks.fancy-pypi-readme.substitutions]]
113113
# replace relative links with absolute links
114114
pattern = '\[(.+?)\]\(((?!https?://)\S+?)\)'
115-
replacement = '[\1](https://github.com/cryptechdev/stainless-api-v2-python/tree/main/\g<2>)'
115+
replacement = '[\1](https://github.com/cryptechdev/neptune-api-v2-python/tree/main/\g<2>)'
116116

117117
[tool.pytest.ini_options]
118118
testpaths = ["tests"]

src/neptune_api_v2/resources/analytics/analytics.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def with_raw_response(self) -> AnalyticsResourceWithRawResponse:
2727
This property can be used as a prefix for any HTTP method call to return
2828
the raw response object instead of the parsed content.
2929
30-
For more information, see https://www.github.com/cryptechdev/stainless-api-v2-python#accessing-raw-response-data-eg-headers
30+
For more information, see https://www.github.com/cryptechdev/neptune-api-v2-python#accessing-raw-response-data-eg-headers
3131
"""
3232
return AnalyticsResourceWithRawResponse(self)
3333

@@ -36,7 +36,7 @@ def with_streaming_response(self) -> AnalyticsResourceWithStreamingResponse:
3636
"""
3737
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
3838
39-
For more information, see https://www.github.com/cryptechdev/stainless-api-v2-python#with_streaming_response
39+
For more information, see https://www.github.com/cryptechdev/neptune-api-v2-python#with_streaming_response
4040
"""
4141
return AnalyticsResourceWithStreamingResponse(self)
4242

@@ -52,7 +52,7 @@ def with_raw_response(self) -> AsyncAnalyticsResourceWithRawResponse:
5252
This property can be used as a prefix for any HTTP method call to return
5353
the raw response object instead of the parsed content.
5454
55-
For more information, see https://www.github.com/cryptechdev/stainless-api-v2-python#accessing-raw-response-data-eg-headers
55+
For more information, see https://www.github.com/cryptechdev/neptune-api-v2-python#accessing-raw-response-data-eg-headers
5656
"""
5757
return AsyncAnalyticsResourceWithRawResponse(self)
5858

@@ -61,7 +61,7 @@ def with_streaming_response(self) -> AsyncAnalyticsResourceWithStreamingResponse
6161
"""
6262
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
6363
64-
For more information, see https://www.github.com/cryptechdev/stainless-api-v2-python#with_streaming_response
64+
For more information, see https://www.github.com/cryptechdev/neptune-api-v2-python#with_streaming_response
6565
"""
6666
return AsyncAnalyticsResourceWithStreamingResponse(self)
6767

src/neptune_api_v2/resources/analytics/market/history.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def with_raw_response(self) -> HistoryResourceWithRawResponse:
3333
This property can be used as a prefix for any HTTP method call to return
3434
the raw response object instead of the parsed content.
3535
36-
For more information, see https://www.github.com/cryptechdev/stainless-api-v2-python#accessing-raw-response-data-eg-headers
36+
For more information, see https://www.github.com/cryptechdev/neptune-api-v2-python#accessing-raw-response-data-eg-headers
3737
"""
3838
return HistoryResourceWithRawResponse(self)
3939

@@ -42,7 +42,7 @@ def with_streaming_response(self) -> HistoryResourceWithStreamingResponse:
4242
"""
4343
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
4444
45-
For more information, see https://www.github.com/cryptechdev/stainless-api-v2-python#with_streaming_response
45+
For more information, see https://www.github.com/cryptechdev/neptune-api-v2-python#with_streaming_response
4646
"""
4747
return HistoryResourceWithStreamingResponse(self)
4848

@@ -227,7 +227,7 @@ def with_raw_response(self) -> AsyncHistoryResourceWithRawResponse:
227227
This property can be used as a prefix for any HTTP method call to return
228228
the raw response object instead of the parsed content.
229229
230-
For more information, see https://www.github.com/cryptechdev/stainless-api-v2-python#accessing-raw-response-data-eg-headers
230+
For more information, see https://www.github.com/cryptechdev/neptune-api-v2-python#accessing-raw-response-data-eg-headers
231231
"""
232232
return AsyncHistoryResourceWithRawResponse(self)
233233

@@ -236,7 +236,7 @@ def with_streaming_response(self) -> AsyncHistoryResourceWithStreamingResponse:
236236
"""
237237
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
238238
239-
For more information, see https://www.github.com/cryptechdev/stainless-api-v2-python#with_streaming_response
239+
For more information, see https://www.github.com/cryptechdev/neptune-api-v2-python#with_streaming_response
240240
"""
241241
return AsyncHistoryResourceWithStreamingResponse(self)
242242

src/neptune_api_v2/resources/analytics/market/market.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def with_raw_response(self) -> MarketResourceWithRawResponse:
3838
This property can be used as a prefix for any HTTP method call to return
3939
the raw response object instead of the parsed content.
4040
41-
For more information, see https://www.github.com/cryptechdev/stainless-api-v2-python#accessing-raw-response-data-eg-headers
41+
For more information, see https://www.github.com/cryptechdev/neptune-api-v2-python#accessing-raw-response-data-eg-headers
4242
"""
4343
return MarketResourceWithRawResponse(self)
4444

@@ -47,7 +47,7 @@ def with_streaming_response(self) -> MarketResourceWithStreamingResponse:
4747
"""
4848
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
4949
50-
For more information, see https://www.github.com/cryptechdev/stainless-api-v2-python#with_streaming_response
50+
For more information, see https://www.github.com/cryptechdev/neptune-api-v2-python#with_streaming_response
5151
"""
5252
return MarketResourceWithStreamingResponse(self)
5353

@@ -82,7 +82,7 @@ def with_raw_response(self) -> AsyncMarketResourceWithRawResponse:
8282
This property can be used as a prefix for any HTTP method call to return
8383
the raw response object instead of the parsed content.
8484
85-
For more information, see https://www.github.com/cryptechdev/stainless-api-v2-python#accessing-raw-response-data-eg-headers
85+
For more information, see https://www.github.com/cryptechdev/neptune-api-v2-python#accessing-raw-response-data-eg-headers
8686
"""
8787
return AsyncMarketResourceWithRawResponse(self)
8888

@@ -91,7 +91,7 @@ def with_streaming_response(self) -> AsyncMarketResourceWithStreamingResponse:
9191
"""
9292
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
9393
94-
For more information, see https://www.github.com/cryptechdev/stainless-api-v2-python#with_streaming_response
94+
For more information, see https://www.github.com/cryptechdev/neptune-api-v2-python#with_streaming_response
9595
"""
9696
return AsyncMarketResourceWithStreamingResponse(self)
9797

src/neptune_api_v2/resources/assets.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def with_raw_response(self) -> AssetsResourceWithRawResponse:
3131
This property can be used as a prefix for any HTTP method call to return
3232
the raw response object instead of the parsed content.
3333
34-
For more information, see https://www.github.com/cryptechdev/stainless-api-v2-python#accessing-raw-response-data-eg-headers
34+
For more information, see https://www.github.com/cryptechdev/neptune-api-v2-python#accessing-raw-response-data-eg-headers
3535
"""
3636
return AssetsResourceWithRawResponse(self)
3737

@@ -40,7 +40,7 @@ def with_streaming_response(self) -> AssetsResourceWithStreamingResponse:
4040
"""
4141
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
4242
43-
For more information, see https://www.github.com/cryptechdev/stainless-api-v2-python#with_streaming_response
43+
For more information, see https://www.github.com/cryptechdev/neptune-api-v2-python#with_streaming_response
4444
"""
4545
return AssetsResourceWithStreamingResponse(self)
4646

@@ -197,7 +197,7 @@ def with_raw_response(self) -> AsyncAssetsResourceWithRawResponse:
197197
This property can be used as a prefix for any HTTP method call to return
198198
the raw response object instead of the parsed content.
199199
200-
For more information, see https://www.github.com/cryptechdev/stainless-api-v2-python#accessing-raw-response-data-eg-headers
200+
For more information, see https://www.github.com/cryptechdev/neptune-api-v2-python#accessing-raw-response-data-eg-headers
201201
"""
202202
return AsyncAssetsResourceWithRawResponse(self)
203203

@@ -206,7 +206,7 @@ def with_streaming_response(self) -> AsyncAssetsResourceWithStreamingResponse:
206206
"""
207207
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
208208
209-
For more information, see https://www.github.com/cryptechdev/stainless-api-v2-python#with_streaming_response
209+
For more information, see https://www.github.com/cryptechdev/neptune-api-v2-python#with_streaming_response
210210
"""
211211
return AsyncAssetsResourceWithStreamingResponse(self)
212212

0 commit comments

Comments
 (0)