You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/python/docs/GeneralApi.md
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -115,7 +115,11 @@ with graphsense.ApiClient(configuration) as api_client:
115
115
q ="foo"# str | It can be (the beginning of) an address, a transaction or a label
116
116
currency ="btc"# str | The cryptocurrency (e.g., btc) (optional)
117
117
limit =10# int | Maximum number of search results (optional) if omitted the server will use the default value of 10
118
-
include_sub_tx_identifiers =True# bool | Whether to include sub-transaction identifiers (optional) if omitted the server will use the default value of False
118
+
include_sub_tx_identifiers =False# bool | Whether to include sub-transaction identifiers (optional) if omitted the server will use the default value of False
119
+
include_labels =True# bool | Whether to include labels (optional) if omitted the server will use the default value of True
120
+
include_actors =True# bool | Whether to include actors (optional) if omitted the server will use the default value of True
121
+
include_txs =True# bool | Whether to include transactions (optional) if omitted the server will use the default value of True
122
+
include_addresses =True# bool | Whether to include addresses (optional) if omitted the server will use the default value of True
119
123
120
124
# example passing only required values which don't have defaults set
121
125
try:
@@ -129,7 +133,7 @@ with graphsense.ApiClient(configuration) as api_client:
129
133
# and optional values
130
134
try:
131
135
# Returns matching addresses, transactions and labels
print("Exception when calling GeneralApi->search: %s\n"% e)
@@ -144,6 +148,10 @@ Name | Type | Description | Notes
144
148
**currency** | **str**| The cryptocurrency (e.g., btc) | [optional]
145
149
**limit** | **int**| Maximum number of search results | [optional] if omitted the server will use the default value of 10
146
150
**include_sub_tx_identifiers** | **bool**| Whether to include sub-transaction identifiers | [optional] if omitted the server will use the default value of False
151
+
**include_labels** | **bool**| Whether to include labels | [optional] if omitted the server will use the default value of True
152
+
**include_actors** | **bool**| Whether to include actors | [optional] if omitted the server will use the default value of True
153
+
**include_txs** | **bool**| Whether to include transactions | [optional] if omitted the server will use the default value of True
154
+
**include_addresses** | **bool**| Whether to include addresses | [optional] if omitted the server will use the default value of True
147
155
**_preload_content** | **bool** | If False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. | [optional] default is True.
Copy file name to clipboardExpand all lines: clients/python/graphsense/api/general_api.py
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -161,6 +161,10 @@ def __search(
161
161
currency (str): The cryptocurrency (e.g., btc). [optional]
162
162
limit (int): Maximum number of search results. [optional] if omitted the server will use the default value of 10
163
163
include_sub_tx_identifiers (bool): Whether to include sub-transaction identifiers. [optional] if omitted the server will use the default value of False
164
+
include_labels (bool): Whether to include labels. [optional] if omitted the server will use the default value of True
165
+
include_actors (bool): Whether to include actors. [optional] if omitted the server will use the default value of True
166
+
include_txs (bool): Whether to include transactions. [optional] if omitted the server will use the default value of True
167
+
include_addresses (bool): Whether to include addresses. [optional] if omitted the server will use the default value of True
164
168
_return_http_data_only (bool): response data without head status
165
169
code and headers. Default is True.
166
170
_preload_content (bool): if False, the urllib3.HTTPResponse object
0 commit comments