/PepperWiki

Simple Pepper/Nao app that uses STT and Wikipedia to answer any question

Primary LanguageShellMIT LicenseMIT

PepperWiki

Simple Pepper/Nao app that uses STT and Wikipedia to answer any question

This app demonstrates how to do a few common things when creating Choregraphe projects for Pepper or Nao.

Setting up the app

The app uses a Python package that wraps the Wikipedia WebAPI into a simple Python module. This package is available on pypi as "wikipedia".

You should have Python2.7, virtualenv and pip installed on your machine. If you need help with these tools, check the following page that explains virtualenv and useful Python project setups: http://www.dabapps.com/blog/introduction-to-pip-and-virtualenv-python/

Now, on a Linux machine, you can use the setup.sh file:

git clone git@github.com:/sebcagnon/PepperWiki.git
cd PepperWiki
./setup.sh

For Windows, use ./setup_win.sh instead. OSX should work like Linux.

Now you have the virtualenv folder env/ and the WikipediaExample/lib folder including all the Python libs required for making the Wikipedia work on your robot.

For more info on how the app works, check the associated tutorial.