9 lines
209 B
Python
9 lines
209 B
Python
import FileDialog
|
|
|
|
import aip
|
|
|
|
|
|
f = open(FileDialog.getOneFile(), 'rb')
|
|
client = aip.AipOcr("Enter Your APP_ID", "Enter Your API_KEY", "Enter Your SECRET_KEY")
|
|
print(client.basicGeneral(f.read(), options={}))
|