r = 'https://api.kuna.io/v3/auth/me'
api_path = "/v3/auth/me"
nonce = str(time.time())
body = str('')
msg = api_path+nonce+body
kun_signature = hmac.new(secret_key.encode('ascii'), msg.encode('ascii'), hashlib.sha384).hexdigest()
headers = {'accept': 'application/json',
'content-type': 'application/json',
'kun-nonce': nonce,
'kun-apikey': public_key,
'kun-signature': kun_signature}
pool = requests.post(r, headers=headers)
print(pool)
'/v3/auth/me'
r = 'https://api.kuna.io'
apiPath = '/v3/auth/me'