graphsense-python 1.8.0__tar.gz → 1.9.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/PKG-INFO +17 -6
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/README.md +5 -4
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/__init__.py +2 -2
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/api/addresses_api.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/api/blocks_api.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/api/bulk_api.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/api/entities_api.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/api/general_api.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/api/rates_api.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/api/tags_api.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/api/tokens_api.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/api/txs_api.py +25 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/api_client.py +2 -2
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/configuration.py +3 -3
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/exceptions.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/actor.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/actor_context.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/actors.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/address.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/address_tag.py +9 -5
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/address_tag_all_of.py +5 -7
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/address_tags.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/address_tx.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/address_tx_utxo.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/address_txs.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/block.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/block_at_date.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/concept.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/currency_stats.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/entity.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/entity_addresses.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/height.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/label_summary.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/labeled_item_ref.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/labeled_item_refs.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/link.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/link_utxo.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/links.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/neighbor_address.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/neighbor_addresses.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/neighbor_entities.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/neighbor_entity.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/rate.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/rates.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/search_result.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/search_result_by_currency.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/search_result_labels.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/search_result_leaf.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/search_result_level1.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/search_result_level2.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/search_result_level3.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/search_result_level4.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/search_result_level5.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/search_result_level6.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/stats.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/tag.py +9 -3
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/tag_cloud_entry.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/tag_summary.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/taxonomy.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/token_config.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/token_configs.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/token_values.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/tx.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/tx_account.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/tx_ref.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/tx_summary.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/tx_utxo.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/tx_value.py +5 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/tx_values.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/txs_account.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/values.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model_utils.py +1 -1
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/rest.py +2 -2
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense_python.egg-info/PKG-INFO +17 -6
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/setup.py +2 -2
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/LICENSE +0 -0
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/api/__init__.py +0 -0
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/apis/__init__.py +0 -0
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/model/__init__.py +0 -0
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense/models/__init__.py +0 -0
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense_python.egg-info/SOURCES.txt +0 -0
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense_python.egg-info/dependency_links.txt +0 -0
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense_python.egg-info/requires.txt +0 -0
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/graphsense_python.egg-info/top_level.txt +0 -0
- {graphsense_python-1.8.0 → graphsense_python-1.9.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: graphsense-python
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.9.4
|
|
4
4
|
Summary: GraphSense API
|
|
5
5
|
Home-page: https://graphsense.github.io/
|
|
6
6
|
Author: Iknaio Cryptoasset Analytics GmbH
|
|
@@ -14,14 +14,24 @@ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
|
14
14
|
License-File: LICENSE
|
|
15
15
|
Requires-Dist: urllib3>=1.25.3
|
|
16
16
|
Requires-Dist: python-dateutil
|
|
17
|
+
Dynamic: author
|
|
18
|
+
Dynamic: author-email
|
|
19
|
+
Dynamic: description
|
|
20
|
+
Dynamic: description-content-type
|
|
21
|
+
Dynamic: home-page
|
|
22
|
+
Dynamic: keywords
|
|
23
|
+
Dynamic: project-url
|
|
24
|
+
Dynamic: requires-dist
|
|
25
|
+
Dynamic: requires-python
|
|
26
|
+
Dynamic: summary
|
|
17
27
|
|
|
18
28
|
# graphsense-python
|
|
19
29
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks.
|
|
20
30
|
|
|
21
31
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
22
32
|
|
|
23
|
-
- API version: 1.
|
|
24
|
-
- Package version: 1.
|
|
33
|
+
- API version: 1.9.4
|
|
34
|
+
- Package version: 1.9.4
|
|
25
35
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
26
36
|
|
|
27
37
|
## Requirements.
|
|
@@ -31,11 +41,12 @@ Python >= 3.6
|
|
|
31
41
|
## Installation & Usage
|
|
32
42
|
### pip install
|
|
33
43
|
|
|
34
|
-
|
|
44
|
+
If the python package is hosted on a repository, you can install directly using:
|
|
35
45
|
|
|
36
46
|
```sh
|
|
37
|
-
pip install graphsense-python
|
|
47
|
+
pip install git+https://github.com/graphsense/graphsense-python.git
|
|
38
48
|
```
|
|
49
|
+
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/graphsense/graphsense-python.git`)
|
|
39
50
|
|
|
40
51
|
Then import the package:
|
|
41
52
|
```python
|
|
@@ -3,8 +3,8 @@ GraphSense API provides programmatic access to various ledgers' addresses, entit
|
|
|
3
3
|
|
|
4
4
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
5
5
|
|
|
6
|
-
- API version: 1.
|
|
7
|
-
- Package version: 1.
|
|
6
|
+
- API version: 1.9.4
|
|
7
|
+
- Package version: 1.9.4
|
|
8
8
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
9
9
|
|
|
10
10
|
## Requirements.
|
|
@@ -14,11 +14,12 @@ Python >= 3.6
|
|
|
14
14
|
## Installation & Usage
|
|
15
15
|
### pip install
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
If the python package is hosted on a repository, you can install directly using:
|
|
18
18
|
|
|
19
19
|
```sh
|
|
20
|
-
pip install graphsense-python
|
|
20
|
+
pip install git+https://github.com/graphsense/graphsense-python.git
|
|
21
21
|
```
|
|
22
|
+
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/graphsense/graphsense-python.git`)
|
|
22
23
|
|
|
23
24
|
Then import the package:
|
|
24
25
|
```python
|
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
|
|
6
6
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.
|
|
8
|
+
The version of the OpenAPI document: 1.9.4
|
|
9
9
|
Contact: contact@ikna.io
|
|
10
10
|
Generated by: https://openapi-generator.tech
|
|
11
11
|
"""
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
__version__ = "1.
|
|
14
|
+
__version__ = "1.9.4"
|
|
15
15
|
|
|
16
16
|
# import ApiClient
|
|
17
17
|
from graphsense.api_client import ApiClient
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -328,6 +328,8 @@ class TxsApi(object):
|
|
|
328
328
|
|
|
329
329
|
Keyword Args:
|
|
330
330
|
include_io (bool): Whether to include inputs/outputs of a transaction (UTXO only). [optional] if omitted the server will use the default value of False
|
|
331
|
+
include_nonstandard_io (bool): Whether to include non-standard inputs/outputs such as OP_RETURN of a transaction (UTXO only). [optional] if omitted the server will use the default value of False
|
|
332
|
+
include_io_index (bool): Whether to include the index of inputs/outputs of a transaction (UTXO only). [optional] if omitted the server will use the default value of False
|
|
331
333
|
token_tx_id (int): Select a specific token_transaction (Account model only). [optional]
|
|
332
334
|
_return_http_data_only (bool): response data without head status
|
|
333
335
|
code and headers. Default is True.
|
|
@@ -395,6 +397,8 @@ class TxsApi(object):
|
|
|
395
397
|
'currency',
|
|
396
398
|
'tx_hash',
|
|
397
399
|
'include_io',
|
|
400
|
+
'include_nonstandard_io',
|
|
401
|
+
'include_io_index',
|
|
398
402
|
'token_tx_id',
|
|
399
403
|
],
|
|
400
404
|
'required': [
|
|
@@ -420,6 +424,10 @@ class TxsApi(object):
|
|
|
420
424
|
(str,),
|
|
421
425
|
'include_io':
|
|
422
426
|
(bool,),
|
|
427
|
+
'include_nonstandard_io':
|
|
428
|
+
(bool,),
|
|
429
|
+
'include_io_index':
|
|
430
|
+
(bool,),
|
|
423
431
|
'token_tx_id':
|
|
424
432
|
(int,),
|
|
425
433
|
},
|
|
@@ -427,12 +435,16 @@ class TxsApi(object):
|
|
|
427
435
|
'currency': 'currency',
|
|
428
436
|
'tx_hash': 'tx_hash',
|
|
429
437
|
'include_io': 'include_io',
|
|
438
|
+
'include_nonstandard_io': 'include_nonstandard_io',
|
|
439
|
+
'include_io_index': 'include_io_index',
|
|
430
440
|
'token_tx_id': 'token_tx_id',
|
|
431
441
|
},
|
|
432
442
|
'location_map': {
|
|
433
443
|
'currency': 'path',
|
|
434
444
|
'tx_hash': 'path',
|
|
435
445
|
'include_io': 'query',
|
|
446
|
+
'include_nonstandard_io': 'query',
|
|
447
|
+
'include_io_index': 'query',
|
|
436
448
|
'token_tx_id': 'query',
|
|
437
449
|
},
|
|
438
450
|
'collection_format_map': {
|
|
@@ -469,6 +481,8 @@ class TxsApi(object):
|
|
|
469
481
|
io (str): Input or outpus values of a transaction
|
|
470
482
|
|
|
471
483
|
Keyword Args:
|
|
484
|
+
include_nonstandard_io (bool): Whether to include non-standard inputs/outputs such as OP_RETURN of a transaction (UTXO only). [optional] if omitted the server will use the default value of False
|
|
485
|
+
include_io_index (bool): Whether to include the index of inputs/outputs of a transaction (UTXO only). [optional] if omitted the server will use the default value of False
|
|
472
486
|
_return_http_data_only (bool): response data without head status
|
|
473
487
|
code and headers. Default is True.
|
|
474
488
|
_preload_content (bool): if False, the urllib3.HTTPResponse object
|
|
@@ -537,6 +551,8 @@ class TxsApi(object):
|
|
|
537
551
|
'currency',
|
|
538
552
|
'tx_hash',
|
|
539
553
|
'io',
|
|
554
|
+
'include_nonstandard_io',
|
|
555
|
+
'include_io_index',
|
|
540
556
|
],
|
|
541
557
|
'required': [
|
|
542
558
|
'currency',
|
|
@@ -568,16 +584,24 @@ class TxsApi(object):
|
|
|
568
584
|
(str,),
|
|
569
585
|
'io':
|
|
570
586
|
(str,),
|
|
587
|
+
'include_nonstandard_io':
|
|
588
|
+
(bool,),
|
|
589
|
+
'include_io_index':
|
|
590
|
+
(bool,),
|
|
571
591
|
},
|
|
572
592
|
'attribute_map': {
|
|
573
593
|
'currency': 'currency',
|
|
574
594
|
'tx_hash': 'tx_hash',
|
|
575
595
|
'io': 'io',
|
|
596
|
+
'include_nonstandard_io': 'include_nonstandard_io',
|
|
597
|
+
'include_io_index': 'include_io_index',
|
|
576
598
|
},
|
|
577
599
|
'location_map': {
|
|
578
600
|
'currency': 'path',
|
|
579
601
|
'tx_hash': 'path',
|
|
580
602
|
'io': 'path',
|
|
603
|
+
'include_nonstandard_io': 'query',
|
|
604
|
+
'include_io_index': 'query',
|
|
581
605
|
},
|
|
582
606
|
'collection_format_map': {
|
|
583
607
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -77,7 +77,7 @@ class ApiClient(object):
|
|
|
77
77
|
self.default_headers[header_name] = header_value
|
|
78
78
|
self.cookie = cookie
|
|
79
79
|
# Set default User-Agent.
|
|
80
|
-
self.user_agent = 'OpenAPI-Generator/1.
|
|
80
|
+
self.user_agent = 'OpenAPI-Generator/1.9.4/python'
|
|
81
81
|
|
|
82
82
|
def __enter__(self):
|
|
83
83
|
return self
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -406,8 +406,8 @@ conf = graphsense.Configuration(
|
|
|
406
406
|
return "Python SDK Debug Report:\n"\
|
|
407
407
|
"OS: {env}\n"\
|
|
408
408
|
"Python Version: {pyversion}\n"\
|
|
409
|
-
"Version of the API: 1.
|
|
410
|
-
"SDK Package Version: 1.
|
|
409
|
+
"Version of the API: 1.9.4\n"\
|
|
410
|
+
"SDK Package Version: 1.9.4".\
|
|
411
411
|
format(env=sys.platform, pyversion=sys.version)
|
|
412
412
|
|
|
413
413
|
def get_host_settings(self):
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -98,9 +98,9 @@ class AddressTag(ModelComposed):
|
|
|
98
98
|
'tagpack_is_public': (bool,), # noqa: E501
|
|
99
99
|
'tagpack_creator': (str,), # noqa: E501
|
|
100
100
|
'is_cluster_definer': (bool,), # noqa: E501
|
|
101
|
+
'tag_type': (str,), # noqa: E501
|
|
101
102
|
'currency': (str,), # noqa: E501
|
|
102
103
|
'address': (str,), # noqa: E501
|
|
103
|
-
'entity': (int,), # noqa: E501
|
|
104
104
|
'category': (str,), # noqa: E501
|
|
105
105
|
'concepts': ([str],), # noqa: E501
|
|
106
106
|
'actor': (str,), # noqa: E501
|
|
@@ -111,6 +111,7 @@ class AddressTag(ModelComposed):
|
|
|
111
111
|
'confidence': (str,), # noqa: E501
|
|
112
112
|
'confidence_level': (int,), # noqa: E501
|
|
113
113
|
'inherited_from': (str,), # noqa: E501
|
|
114
|
+
'entity': (int,), # noqa: E501
|
|
114
115
|
}
|
|
115
116
|
|
|
116
117
|
@cached_property
|
|
@@ -124,9 +125,9 @@ class AddressTag(ModelComposed):
|
|
|
124
125
|
'tagpack_is_public': 'tagpack_is_public', # noqa: E501
|
|
125
126
|
'tagpack_creator': 'tagpack_creator', # noqa: E501
|
|
126
127
|
'is_cluster_definer': 'is_cluster_definer', # noqa: E501
|
|
128
|
+
'tag_type': 'tag_type', # noqa: E501
|
|
127
129
|
'currency': 'currency', # noqa: E501
|
|
128
130
|
'address': 'address', # noqa: E501
|
|
129
|
-
'entity': 'entity', # noqa: E501
|
|
130
131
|
'category': 'category', # noqa: E501
|
|
131
132
|
'concepts': 'concepts', # noqa: E501
|
|
132
133
|
'actor': 'actor', # noqa: E501
|
|
@@ -137,6 +138,7 @@ class AddressTag(ModelComposed):
|
|
|
137
138
|
'confidence': 'confidence', # noqa: E501
|
|
138
139
|
'confidence_level': 'confidence_level', # noqa: E501
|
|
139
140
|
'inherited_from': 'inherited_from', # noqa: E501
|
|
141
|
+
'entity': 'entity', # noqa: E501
|
|
140
142
|
}
|
|
141
143
|
|
|
142
144
|
read_only_vars = {
|
|
@@ -153,9 +155,9 @@ class AddressTag(ModelComposed):
|
|
|
153
155
|
tagpack_is_public (bool): whether the address is public
|
|
154
156
|
tagpack_creator (str): Tagpack creator
|
|
155
157
|
is_cluster_definer (bool): whether the address tag applies to the entity level
|
|
158
|
+
tag_type (str): kind of tag e.g. Mention; representing a mention of an address, or Actor; representing an actor saying something about the actor behind the address.
|
|
156
159
|
currency (str): crypto currency code
|
|
157
160
|
address (str): Address
|
|
158
|
-
entity (int): Entity id
|
|
159
161
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
160
162
|
will be type checked and a TypeError will be
|
|
161
163
|
raised if the wrong type is input.
|
|
@@ -196,6 +198,7 @@ class AddressTag(ModelComposed):
|
|
|
196
198
|
confidence (str): Confidence name. [optional] # noqa: E501
|
|
197
199
|
confidence_level (int): Confidence level. [optional] # noqa: E501
|
|
198
200
|
inherited_from (str): if the tag was inherited from cluster. [optional] if omitted the server will use the default value of "cluster" # noqa: E501
|
|
201
|
+
entity (int): Entity id. [optional] # noqa: E501
|
|
199
202
|
"""
|
|
200
203
|
|
|
201
204
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -270,9 +273,9 @@ class AddressTag(ModelComposed):
|
|
|
270
273
|
tagpack_is_public (bool): whether the address is public
|
|
271
274
|
tagpack_creator (str): Tagpack creator
|
|
272
275
|
is_cluster_definer (bool): whether the address tag applies to the entity level
|
|
276
|
+
tag_type (str): kind of tag e.g. Mention; representing a mention of an address, or Actor; representing an actor saying something about the actor behind the address.
|
|
273
277
|
currency (str): crypto currency code
|
|
274
278
|
address (str): Address
|
|
275
|
-
entity (int): Entity id
|
|
276
279
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
277
280
|
will be type checked and a TypeError will be
|
|
278
281
|
raised if the wrong type is input.
|
|
@@ -313,6 +316,7 @@ class AddressTag(ModelComposed):
|
|
|
313
316
|
confidence (str): Confidence name. [optional] # noqa: E501
|
|
314
317
|
confidence_level (int): Confidence level. [optional] # noqa: E501
|
|
315
318
|
inherited_from (str): if the tag was inherited from cluster. [optional] if omitted the server will use the default value of "cluster" # noqa: E501
|
|
319
|
+
entity (int): Entity id. [optional] # noqa: E501
|
|
316
320
|
"""
|
|
317
321
|
|
|
318
322
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -103,12 +103,11 @@ class AddressTagAllOf(ModelNormal):
|
|
|
103
103
|
|
|
104
104
|
@classmethod
|
|
105
105
|
@convert_js_args_to_python_args
|
|
106
|
-
def _from_openapi_data(cls, address,
|
|
106
|
+
def _from_openapi_data(cls, address, *args, **kwargs): # noqa: E501
|
|
107
107
|
"""AddressTagAllOf - a model defined in OpenAPI
|
|
108
108
|
|
|
109
109
|
Args:
|
|
110
110
|
address (str): Address
|
|
111
|
-
entity (int): Entity id
|
|
112
111
|
|
|
113
112
|
Keyword Args:
|
|
114
113
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
@@ -141,6 +140,7 @@ class AddressTagAllOf(ModelNormal):
|
|
|
141
140
|
Animal class but this time we won't travel
|
|
142
141
|
through its discriminator because we passed in
|
|
143
142
|
_visited_composed_classes = (Animal,)
|
|
143
|
+
entity (int): Entity id. [optional] # noqa: E501
|
|
144
144
|
"""
|
|
145
145
|
|
|
146
146
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -169,7 +169,6 @@ class AddressTagAllOf(ModelNormal):
|
|
|
169
169
|
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
170
170
|
|
|
171
171
|
self.address = address
|
|
172
|
-
self.entity = entity
|
|
173
172
|
for var_name, var_value in kwargs.items():
|
|
174
173
|
if var_name not in self.attribute_map and \
|
|
175
174
|
self._configuration is not None and \
|
|
@@ -190,12 +189,11 @@ class AddressTagAllOf(ModelNormal):
|
|
|
190
189
|
])
|
|
191
190
|
|
|
192
191
|
@convert_js_args_to_python_args
|
|
193
|
-
def __init__(self, address,
|
|
192
|
+
def __init__(self, address, *args, **kwargs): # noqa: E501
|
|
194
193
|
"""AddressTagAllOf - a model defined in OpenAPI
|
|
195
194
|
|
|
196
195
|
Args:
|
|
197
196
|
address (str): Address
|
|
198
|
-
entity (int): Entity id
|
|
199
197
|
|
|
200
198
|
Keyword Args:
|
|
201
199
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
@@ -228,6 +226,7 @@ class AddressTagAllOf(ModelNormal):
|
|
|
228
226
|
Animal class but this time we won't travel
|
|
229
227
|
through its discriminator because we passed in
|
|
230
228
|
_visited_composed_classes = (Animal,)
|
|
229
|
+
entity (int): Entity id. [optional] # noqa: E501
|
|
231
230
|
"""
|
|
232
231
|
|
|
233
232
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -254,7 +253,6 @@ class AddressTagAllOf(ModelNormal):
|
|
|
254
253
|
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
255
254
|
|
|
256
255
|
self.address = address
|
|
257
|
-
self.entity = entity
|
|
258
256
|
for var_name, var_value in kwargs.items():
|
|
259
257
|
if var_name not in self.attribute_map and \
|
|
260
258
|
self._configuration is not None and \
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.9.4
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|