12 lines
226 B
Python
12 lines
226 B
Python
|
#usr/bin/python2.7
|
||
|
|
||
|
from src.img2text2 import Chatbot
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
base_url = ""
|
||
|
# Appkey is required
|
||
|
appkey = "app-"
|
||
|
|
||
|
cb = Chatbot(appkey, base_url)
|
||
|
print cb.img2text(path="./img/2.jpg")
|