File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11configured_endpoints : 50
22openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/cryptech%2Fneptune-api-v2-cd88dd75403e620991c3659cd7e9278f9c8c439f3857c25db8634dfc7e77a9b9.yml
33openapi_spec_hash : 35a0cbd0262458d633e38fc5ba442118
4- config_hash : 84ae3ae9153257feb1da17e9d67435dc
4+ config_hash : 9741b1a625d599ce70727931ab1b9fbf
Original file line number Diff line number Diff line change @@ -32,10 +32,7 @@ from neptune_api_v2 import NeptuneAPIV2
3232
3333client = NeptuneAPIV2()
3434
35- response = client.markets.get_overview(
36- with_text = True ,
37- with_value = True ,
38- )
35+ response = client.markets.get_overview()
3936print (response.data)
4037```
4138
@@ -51,10 +48,7 @@ client = AsyncNeptuneAPIV2()
5148
5249
5350async 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
You can’t perform that action at this time.
0 commit comments