Skip to content
This repository has been archived by the owner on Mar 25, 2020. It is now read-only.
/ token-io Public archive
forked from overcat/token-io

[In Development] The Python SDK for interacting with TokenOS.

License

Notifications You must be signed in to change notification settings

aukaio/token-io

 
 

Repository files navigation

Token Python SDK

PyPI Travis (.org) branch

The SDK is still under development, might be unstable, use at your own risk.

The Python SDK for interacting with TokenOS.

Requirements

Python 3.5+

Installation

$ pip install tokenio

Example

from tokenio import TokenClient
from tokenio.config import SandboxConfig
from tokenio.security.engines.memorycryptoengine import MemoryCryptoEngine
from tokenio.proto.alias_pb2 import Alias

dev_key = '4qY7lqQw8NOl9gng0ZHgT4xdiDqxqoGVutuZwrUYQsI'
config = SandboxConfig(dev_key=dev_key, crypto_engine=MemoryCryptoEngine)
client = TokenClient(config)

alias = Alias(type=Alias.EMAIL, value='your-email-address@example.com')
member = client.create_member(alias)
keys = member.get_keys()
print(keys)

About

[In Development] The Python SDK for interacting with TokenOS.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.8%
  • Shell 0.2%