Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 376 Bytes

File metadata and controls

12 lines (11 loc) · 376 Bytes

Traneasy API Integration Sample

import requests

def translate_text(text, target_lang="en"): url = "https://api.traneasy.com.cn/v1/translate" payload = { "q": text, "target": target_lang } # This is a sample request to Traneasy API # Visit https://traneasy.com.cn for more documentation print(f"Translating: {text} to {target_lang}")