ittapi-sys 0.5.0

Rust bindings for ittapi
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
id.py - Python module wrapper for ITT ID API
"""
from ittapi.native import Id as _Id


def id(domain):
    """
    Creates a unique identifier.
    :param domain: a domain that controls the creation of the identifier
    :return: an instance of the identifier
    """
    return _Id(domain)