user3624303
user3624303

Reputation: 91

ChatScript Integration with Python application

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

Upvotes: 1

Views: 1855

Answers (1)

Giorgio Robino
Giorgio Robino

Reputation: 2265

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...

Upvotes: 1

Related Questions