blob: f31d91e6b94608ae72a1a210659e5b309e040012 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
import asyncio
from random import randint
from aglbaseservice import AGLBaseService
class GeoClueService(AGLBaseService):
def __init__(self, ip, port, api='geoclue'):
super().__init__(ip=ip, port=port, api=api)
async def location(self):
verb = 'location'
msgid = randint(0, 999999)
await self.send(f'[2,"{msgid}","{self.api}/{verb}",""]')
return await self.receive()
async def subscribe(self, event='location'):
super().subscribe(event=event)
async def unsubscribe(self, event='location'):
super().unsubscribe(event=event)
async def main(loop):
GCS = await GeoClueService(ip='192.168.234.202', port='30009')
print(await GCS.location())
listener = loop.create_task(GCS.listener())
await listener
if __name__ == '__main__':
loop = asyncio.get_event_loop()
loop.run_until_complete(main(loop))
|