# pyteles **Repository Path**: mirrors_armon/pyteles ## Basic Information - **Project Name**: pyteles - **Description**: A Python client for the Teles server - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README pyteles ======= Pyteles provides a Python client library to interface with the teles server. Install -------- Download and install from source: python setup.py install Example ------ Using pyteles is very simple:: from pyteles import TelesClient # Create a client to the local server, default port cl = TelesClient("localhost") # Get the "people" space pp = cl["people"] # List objects people = pp.list_objects() # Add jane pp.add("jane") pp.associate("jane", 40.123, -120.120) # Find the 5 nearest people, should include jane nearby = pp.query_nearest(40.123, -120.120, 5) assert "jane" in nearby