add pxd headers for correct work

fixes definitions
can run until API call
This commit is contained in:
Alex Bezdieniezhnykh
2025-01-16 17:56:58 +02:00
parent 7439005ed7
commit e21dd7e70f
17 changed files with 207 additions and 165 deletions
+10
View File
@@ -0,0 +1,10 @@
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)