UiPath调⽤python脚本
程序如下图所⽰:
winform开源商业控件telnet名词解释步骤⼀:下载python包 如图 下载安装 UiPath.Python.Activities
步骤⼆:调⽤python Scope python脚本有关的活动都应该放在这个范围下 注意设置python安装的路径以及⽀持的python的版本
步骤三:Load Python Script 这个地⽅写的脚本只是定义函数 要注意所写函数的函数名 在下⼀步骤会⽤到
步骤四:Invoke Python Method 将所写的python函数导⼊后进⾏调⽤ 写⼊函数的参数以及需要使⽤的函数名 返回⼀个python对象(写⼊参数要⽤{}括起来)
步骤五:Get Python Object 将获得的python对象进⾏转换成对象
步骤六:输出 或者进⾏ 保存
python脚本为调⽤百度API进⾏发票识别
# -*- coding: utf-8 -*-
import requests
html表白网页源码import base64
def orc_look(path):
access_token = "百度云注册获取"
with open(path, 'rb') as f:
image_data = f.read()
base64_ima = str(base64.b64encode(image_data),encoding='utf-8')
data = {
'image': base64_ima
构造函数和析构函数区别}
headers = {
'Content-Type': 'application/x-www-form-urlencoded'
通过质量认证的3dcg模型网}
url = "aip.baidubce/rest/2.0/ocr/v1/vat_invoice?access_token=" + str(access_token) r = requests.post(url, params=headers, data=data).json()
t = r['words_result']
t = str(t)
python基础教程电子书百度云return t
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论