Skip to main content

(Unofficial) Python library for remote-controlling the Temi robot, via WebSocket.

Project description

Temi Python API

(Unofficial) Python library for remote-controlling the Temi robot, via WebSocket.

A corresponding server needs to be installed on Temi. You can find it here.

Installation

pip install temi

Usage

Basics

This library uses asyncio to perform the operations. The minimum structure is as follows:

import asyncio
from temi import Temi

async def connect_temi():
    temi = Temi('ws://YOUR_TEMI_IP:8175')
    await temi.connect()
    await temi.speak(sentence='Hello!').run()

asyncio.get_event_loop().run_until_complete(connect_temi())

Note that each call needs to be await-ed, and must end with a run().

Sending multiple commands at once

Sometimes, you need temi to do multiple things at once, while other times you may want Temi to do things sequentially. It is easy to mix both in you code. Just do it like such:

# Temi will go to the door, uttering "I hear someone at the door" along the way.
# When Temi arrives, it will ask the question "Hello! What's your name?"
await temi.speak(sentence='I hear someone at the door.').goto(location='Front Door').run()
await temi.ask(sentence="Hello! What's your name?").run()

Timeout

All commands support a timeout parameter. If it is specified, the await will terminate after the timeout, regardless of execution state.

# The call will return after three seconds, regardless of Temi's location.
# Temi may continue walking to the door, but you can command it to stop in the following code.
await temi.goto(location='Front Door', timeout=3).run()

API

Currently, the following APIs are implemented:

# Speak a sentence.
await temi.speak(sentence="Sentence to say", timeout=None).run()

# Ask a question, then return the reply.
reply = await temi.ask(sentence="Question to ask", timeout=None).run()

# Go to a location
await temi.goto(location="Location name", timeout=None).run()

# Turn by an angle
await temi.turn(angle=angle, timeout=None).run()

# Tilt screen to an angle (-25 ~ 55)
await temi.turn(angle=angle, timeout=None).run()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

temi-0.0.2.tar.gz (4.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

temi-0.0.2-py3-none-any.whl (5.0 kB view details)

Uploaded Python 3

File details

Details for the file temi-0.0.2.tar.gz.

File metadata

  • Download URL: temi-0.0.2.tar.gz
  • Upload date:
  • Size: 4.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.8

File hashes

Hashes for temi-0.0.2.tar.gz
Algorithm Hash digest
SHA256 a94aec0399de410976a6134e4d13a95607c6a4bd764e0ceb7c96bbb8aa9b972a
MD5 f863aab84bc97932362309c43ddf18a8
BLAKE2b-256 d27032155da32ca5fe468d4ae13cb0f55bc7ec34d07d87c48b8b59dae6977141

See more details on using hashes here.

File details

Details for the file temi-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: temi-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 5.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.8

File hashes

Hashes for temi-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 d1d5f2b0aa20991fb883a78a2010b379fbd56733c9b8ff3ce1d487fef6244263
MD5 bf729bb30fc531690157997d993552fb
BLAKE2b-256 bd2c56ffe10d79d704c0f47c3c3324f575f8b239ff86009ac006504a8038975a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page