15 строки
297 B
Python
15 строки
297 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
"""
|
||
|
File: __init__.py
|
||
|
Description: Python SDK of the Cognitive Face API.
|
||
|
"""
|
||
|
|
||
|
from . import face
|
||
|
from . import face_list
|
||
|
from . import person
|
||
|
from . import person_group
|
||
|
from . import util
|
||
|
from .util import CognitiveFaceException
|
||
|
from .util import Key
|