ChatScript Integration with Python application

1.8k Views Asked by At

How to integrate ChatScript [scripting language] with my python interface?

1

There are 1 best solutions below

0
On

what do you means with "my Python interface" ?

About how to wrap CS inside a Python app, you maybe want to realize a client / server interface (realizing a client in Python):

https://github.com/bwilcox-1234/ChatScript/blob/master/WIKI/CLIENTS-AND-SERVERS/ChatScript-ClientServer-Manual.md

BTW, I realized a client Ruby gem (maybe helpfull):

http://www.github.com/solyaris/rChatscript

Otherwise if you want to call Python methods from CS scripts, you can use ^TCPopen(...), having realized an HTTP Server Python-side...