Trying this code:
from pysendpulse.pysendpulse import PySendPulse
REST_API_ID = "..."
REST_API_SECRET = "..."
SPApiProxy = PySendPulse(REST_API_ID, REST_API_SECRET)
I get the following exception:
ERROR [2022-06-12 16:30:31,685] Can't find file '..........................' to read security token.
This is because in init() the token is read from the file before it is saved to the file by __get_token() function. I do not understand the expected flow. Shall I create the file myself before calling the constructor? Then why the filename is md5-encoded then?