14 lines
340 B
Python
14 lines
340 B
Python
# -*- coding: utf-8 -*-
|
|
# @Time: 2024/6/24 17:51
|
|
|
|
from ucloud.client import Client
|
|
|
|
def uc_client():
|
|
public_key = '4eZBdwgBzWqGhrOB2aOUxr8jWZtNZN7km'
|
|
private_key = 'DoNFyZBjuJhE5l81BGkcBNGa7r7q9BHCR7JHzombfcOq'
|
|
u_client = Client({
|
|
"public_key": public_key,
|
|
"private_key": private_key,
|
|
})
|
|
return u_client
|