Skip to content

Commit f1f5aae

Browse files
feat(api): manual updates
1 parent ebee3a7 commit f1f5aae

2 files changed

Lines changed: 4 additions & 13 deletions

File tree

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 50
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cryptech%2Fneptune-api-v2-cd88dd75403e620991c3659cd7e9278f9c8c439f3857c25db8634dfc7e77a9b9.yml
33
openapi_spec_hash: 35a0cbd0262458d633e38fc5ba442118
4-
config_hash: 84ae3ae9153257feb1da17e9d67435dc
4+
config_hash: 9741b1a625d599ce70727931ab1b9fbf

README.md

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,7 @@ from neptune_api_v2 import NeptuneAPIV2
3232

3333
client = NeptuneAPIV2()
3434

35-
response = client.markets.get_overview(
36-
with_text=True,
37-
with_value=True,
38-
)
35+
response = client.markets.get_overview()
3936
print(response.data)
4037
```
4138

@@ -51,10 +48,7 @@ client = AsyncNeptuneAPIV2()
5148

5249

5350
async def main() -> None:
54-
response = await client.markets.get_overview(
55-
with_text=True,
56-
with_value=True,
57-
)
51+
response = await client.markets.get_overview()
5852
print(response.data)
5953

6054

@@ -86,10 +80,7 @@ async def main() -> None:
8680
async with AsyncNeptuneAPIV2(
8781
http_client=DefaultAioHttpClient(),
8882
) as client:
89-
response = await client.markets.get_overview(
90-
with_text=True,
91-
with_value=True,
92-
)
83+
response = await client.markets.get_overview()
9384
print(response.data)
9485

9586

0 commit comments

Comments
 (0)