DataTrails Simplehash algorithm for DLT Anchoring
Project description
DataTrails Simplehash in python
Prescribed python code that defines the hashing algorithm for DLT Anchoring.
Support
This package currently is tested against Python versions 3.8,3.9,3.10,3.11 and 3.12.
The current default version is 3.8 - this means that this package will not use any features specific to versions 3.8 and later.
After End of Life of a particular Python version, support is offered on a best effort basis. We may ask you to update your Python version to help solve the problem, if it cannot be reasonably resolved in your current version.
Installation
Use standard python pip utility:
python3 -m pip install datatrails-simplehash
If your version of python3 is too old an error of this type or similar will be emitted:
Which Version
To Determine which version of the simple hash script to use, i.e. simplehashv1 or simplehashv2, look at the response from the v1alpha2/blockchain list api and correlate the version with the hash_schema_version in the simple_hash_details section.
Alternatively look for the SimpleHashInfo section in the datatrails app, found on the transaction page of a simple hash event, and correlate the version with schema_version.
Examples
You can then use the code to recreate the simple hash of a list of SIMPLE_HASH events from DataTrails.
Importing in own code
Permissioned Assets V1
"""From a list of events.
"""
from datatrails_simplehash.v1 import (
anchor_events,
SimpleHashError,
)
with open("credentials/token", mode="r", encoding="utf-8") as tokenfile:
auth_token = tokenfile.read().strip()
# SimpleHashClientAuthError is raised if the auth token is invalid or expired.
# if any pending events a SimpleHashPendingEventFound error will be thrown
# if any of the events do not contain the required field then a SimpleHashFieldMissing error will be thrown
api_query = (
"https://app.datatrails.ai"
"/archivist/v2/assets/-/events"
"?proof_mechanism=SIMPLE_HASH"
"×tamp_accepted_since=2022-10-07T07:01:34Z"
"×tamp_accepted_before=2022-10-16T13:14:56Z"
"&order_by=SIMPLEHASHV1"
)
try:
simplehash = anchor_events(api_query, auth=auth_token)
except SimpleHashError as ex:
print("Error", ex)
else:
print("simplehash=", simplehash)
Permissioned Assets V2
"""From a list of events.
"""
from datatrails_simplehash.v2 import (
anchor_events,
SimpleHashError,
)
with open("credentials/token", mode="r", encoding="utf-8") as tokenfile:
auth_token = tokenfile.read().strip()
# SimpleHashClientAuthError is raised if the auth token is invalid or expired.
# if any pending events a SimpleHashPendingEventFound error will be thrown
# if any of the events do not contain the required field then a SimpleHashFieldMissing error will be thrown
api_query = (
"https://app.datatrails.ai"
"/archivist/v2/assets/-/events"
"?proof_mechanism=SIMPLE_HASH"
"×tamp_accepted_since=2022-10-07T07:01:34Z"
"×tamp_accepted_before=2022-10-16T13:14:56Z"
"&order_by=SIMPLEHASHV1"
)
try:
simplehash = anchor_events(api_query, auth=auth_token)
except SimpleHashError as ex:
print("Error", ex)
else:
print("simplehash=", simplehash)
Public Assets V1
"""From a list of events.
"""
from datatrails_simplehash.v1 import (
anchor_events,
SimpleHashError,
)
# SimpleHashClientAuthError is raised if the auth token is invalid or expired.
# if any pending events a SimpleHashPendingEventFound error will be thrown
# if any of the events do not contain the required field then a SimpleHashFieldMissing error will be thrown
api_query = (
"https://app.datatrails.ai"
"/archivist/v2/publicassets/-/events"
"?proof_mechanism=SIMPLE_HASH"
"×tamp_accepted_since=2022-10-07T07:01:34Z"
"×tamp_accepted_before=2022-10-16T13:14:56Z"
"&order_by=SIMPLEHASHV1"
)
try:
simplehash = anchor_events(api_query)
except SimpleHashError as ex:
print("Error", ex)
else:
print("simplehash=", simplehash)
Public Assets V2
"""From a list of events.
"""
from datatrails_simplehash.v2 import (
anchor_events,
SimpleHashError,
)
# SimpleHashClientAuthError is raised if the auth token is invalid or expired.
# if any pending events a SimpleHashPendingEventFound error will be thrown
# if any of the events do not contain the required field then a SimpleHashFieldMissing error will be thrown
api_query = (
"https://app.datatrails.ai"
"/archivist/v2/publicassets/-/events"
"?proof_mechanism=SIMPLE_HASH"
"×tamp_accepted_since=2022-10-07T07:01:34Z"
"×tamp_accepted_before=2022-10-16T13:14:56Z"
"&order_by=SIMPLEHASHV1"
)
try:
simplehash = anchor_events(api_query)
except SimpleHashError as ex:
print("Error", ex)
else:
print("simplehash=", simplehash)
Command Line
This functionality is also available on the cmdline.
Using a virtual env and published wheel
This can be executed anywhere using a virtualenv and published wheel. Credentials are stored in files in credentials directory.
Using an auth token directly and for permissioned assets
#!/usr/bin/env bash
#
python3 -m venv simplehash-venv
source simplehash-venv/bin/activate
python3 -m pip install -q datatrails_simplehash
api_query="https://app.datatrails.ai"
api_query+="/archivist/v2/assets/-/events"
api_query+="?proof_mechanism=SIMPLE_HASH"
api_query+="×tamp_accepted_since=2022-10-07T07:01:34Z"
api_query+="×tamp_accepted_before=2022-10-16T13:14:56Z"
api_query+="&order_by=SIMPLEHASHV1"
datatrails_simplehashv1 \
--auth-token-file "credentials/token" \
"${api_query}"
deactivate
rm -rf simplehash-venv
Or for schema version 2:
#!/usr/bin/env bash
#
python3 -m venv simplehash-venv
source simplehash-venv/bin/activate
python3 -m pip install -q datatrails_simplehash
api_query="https://app.datatrails.ai"
api_query+="/archivist/v2/assets/-/events"
api_query+="?proof_mechanism=SIMPLE_HASH"
api_query+="×tamp_accepted_since=2022-10-07T07:01:34Z"
api_query+="×tamp_accepted_before=2022-10-16T13:14:56Z"
api_query+="&order_by=SIMPLEHASHV1"
datatrails_simplehashv2 \
--auth-token-file "credentials/token" \
"${api_query}"
deactivate
rm -rf simplehash-venv
Using a client id and secret and for permissioned assets
#!/usr/bin/env bash
#
python3 -m venv simplehash-venv
source simplehash-venv/bin/activate
python3 -m pip install -q datatrails_simplehash
api_query="https://app.datatrails.ai"
api_query+="/archivist/v2/assets/-/events"
api_query+="?proof_mechanism=SIMPLE_HASH"
api_query+="×tamp_accepted_since=2022-10-07T07:01:34Z"
api_query+="×tamp_accepted_before=2022-10-16T13:14:56Z"
api_query+="&order_by=SIMPLEHASHV1"
CLIENT_ID=$(cat credentials/client_id)
datatrails_simplehashv1 \
--client-id "${CLIENT_ID}" \
--client-secret-file "credentials/client_secret" \
"${api_query}"
deactivate
rm -rf simplehash-venv
Or for schema version 2:
#!/usr/bin/env bash
#
python3 -m venv simplehash-venv
source simplehash-venv/bin/activate
python3 -m pip install -q datatrails_simplehash
api_query="https://app.datatrails.ai"
api_query+="/archivist/v2/assets/-/events"
api_query+="?proof_mechanism=SIMPLE_HASH"
api_query+="×tamp_accepted_since=2022-10-07T07:01:34Z"
api_query+="×tamp_accepted_before=2022-10-16T13:14:56Z"
api_query+="&order_by=SIMPLEHASHV1"
CLIENT_ID=$(cat credentials/client_id)
datatrails_simplehashv2 \
--client-id "${CLIENT_ID}" \
--client-secret-file "credentials/client_secret" \
"${api_query}"
deactivate
rm -rf simplehash-venv
Querying the public assets (does not require authentication)
#!/usr/bin/env bash
#
python3 -m venv simplehash-venv
source simplehash-venv/bin/activate
python3 -m pip install -q datatrails_simplehash
start_time = "2022-11-16T00:00:00Z"
end_time = "2022-11-17T00:00:00Z"
datatrails_url = "https://app.datatrails.ai"
endpoint = "archivist/v2/publicassets/-/events"
api_query="https://app.datatrails.ai"
api_query+="/archivist/v2/publicassets/-/events"
api_query+="?proof_mechanism=SIMPLE_HASH"
api_query+="×tamp_accepted_since=2022-10-07T07:01:34Z"
api_query+="×tamp_accepted_before=2022-10-16T13:14:56Z"
api_query+="&order_by=SIMPLEHASHV1"
datatrails_simplehashv1 "${api_query}"
deactivate
rm -rf simplehash-venv
Or for schema version 2:
#!/usr/bin/env bash
#
python3 -m venv simplehash-venv
source simplehash-venv/bin/activate
python3 -m pip install -q datatrails_simplehash
start_time = "2022-11-16T00:00:00Z"
end_time = "2022-11-17T00:00:00Z"
datatrails_url = "https://app.datatrails.ai"
endpoint = "archivist/v2/publicassets/-/events"
api_query="https://app.datatrails.ai"
api_query+="/archivist/v2/publicassets/-/events"
api_query+="?proof_mechanism=SIMPLE_HASH"
api_query+="×tamp_accepted_since=2022-10-07T07:01:34Z"
api_query+="×tamp_accepted_before=2022-10-16T13:14:56Z"
api_query+="&order_by=SIMPLEHASHV1"
datatrails_simplehashv2 "${api_query}"
deactivate
rm -rf simplehash-venv
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file datatrails-simplehash-0.5.0.tar.gz
.
File metadata
- Download URL: datatrails-simplehash-0.5.0.tar.gz
- Upload date:
- Size: 15.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53e98bedf32be585edebcc2ee209964cc1163e479efa04c4a01bcfab83ea3f92 |
|
MD5 | aaa5e87e3045d28eda2706388f4e306e |
|
BLAKE2b-256 | 895263aa6a19a51b2bd647fff58a989b8d5773015f33e168005514e65e5d5fdb |
File details
Details for the file datatrails_simplehash-0.5.0-py2.py3-none-any.whl
.
File metadata
- Download URL: datatrails_simplehash-0.5.0-py2.py3-none-any.whl
- Upload date:
- Size: 9.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 17b6e34d164c3b2e738f42ede752a00a71c99c4f4ca41b2ad33cbded0f9f1641 |
|
MD5 | 69e09766effab9e430090e3fc830b706 |
|
BLAKE2b-256 | 545f0a3bc130b4004d403011848d9f91a3a63d75b6b74f52911b3f9fc5590d6f |