aardio调用python
aardio调用pythonimport console;
console.open();
import py3;
var pyCode = /**
import requests
import base64
def remote_image_to_base64(image_url):
# 发送HTTP请求获取图片内容
response = requests.get(image_url)
# 检查请求是否成功
if response.status_code == 200:
# 读取图片内容并进行Base64编码
image_data = response.content
base64_encoded_data = base64.b64encode(image_data)
base64_message = base64_encoded_data.decode('utf-8')
return base64_message
else:
print(f"Failed to fetch image from {image_url}")
return None
# 使用示例
image_url = 'https://www.baidu.com/img/24lianghui_3fa64faa4dd8496d4ab2a1d411a93dad.gif'
base64_str = remote_image_to_base64(image_url)
if base64_str:
print(base64_str)
**/
py3.exec( pyCode )
console.pause(true);
正需要,谢谢了! 调用python真简单,能不能展开库怎么加载到aardio中 如果是较大的python代码,这种调用python的方法,是不是就够呛了? 佐藤是条狗 发表于 2024-3-12 16:05
如果是较大的python代码,这种调用python的方法,是不是就够呛了?
可以将python代码写在另一个文件里,没要写在这里面 pass 发表于 2024-3-22 09:22
可以将python代码写在另一个文件里,没要写在这里面
那打包得时候 就一个exe嘛?
页:
[1]