gfrdegdergr

This commit is contained in:
27942
2025-09-25 18:29:53 +08:00
commit 0cdb915939
20 changed files with 3195 additions and 0 deletions

18
websea/main.py Normal file
View File

@@ -0,0 +1,18 @@
from curl_cffi import requests
class WebSea:
def __init__(self):
self.session = requests.Session()
self.url = "https://coapi.websea.com"
def wallet_list(self):
self.session.get(
url=f"{self.url}/openApi/wallet/list"
)
if __name__ == '__main__':
url = "https://coapi.websea.com"