mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 09:46:30 +00:00
e21dd7e70f
fixes definitions can run until API call
11 lines
356 B
Cython
11 lines
356 B
Cython
from processor_command cimport FileCommand
|
|
|
|
cdef class ApiClient:
|
|
cdef str email, password, token, folder, token_file, api_url
|
|
|
|
cdef get_encryption_key(self, str hardware_hash)
|
|
cdef login(self, str email, str password, bint persist_token=*)
|
|
cdef bytes load_file(self, str filename, bint persist_token=*)
|
|
cdef bytes load_ai_model(self)
|
|
|