-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path__init__.py
More file actions
30 lines (26 loc) · 907 Bytes
/
__init__.py
File metadata and controls
30 lines (26 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
"""Client implementation and helper functions for integrating with the UID2 services.
Classes:
Uid2Client: main API for interacting with a UID service
Functions:
decrypt_token: decrypt and advertising token to extract advertising ID from it
"""
default_new_session = lambda: None
from .auto_refresh import *
from .client import *
from .encryption import *
from .keys import *
from .euid_client_factory import *
from .uid2_client_factory import *
from .token_generate_input import *
from .token_generate_response import *
from .publisher_client import *
from .bidstream_client import *
from .sharing_client import *
from .decryption_status import *
from .encryption_status import *
from .encryption_data_response import *
from .refresh_response import *
from .uid2_token_generator import *
from .identity_map_client import *
from .identity_map_input import *
from .identity_map_response import *