- install into virtual env
create a list of ips
10.1.1.1
10.2.2.2
create a tasks module
# tasks.py
from sshleme.lib import async_task
@async_task
async def uptime(client):
result, error = await client.run('uptime')
if error:
print(client.output(error))
else:
print(client.output(result.stdout))
run the following
sshleme -r uptime hosts -f ~/path/to/iplist
create a csv file
ipaddress,name
10.1.1.1,hostA
10.2.2.2,hostB
create a tasks module
# tasks.py
from sshleme.lib import async_task
@async_task
async def uptime(client):
result, error = await client.run('uptime', fields=['name'])
if error:
print(client.output(error, fields=['name']))
else:
print(client.output(result.stdout, fields=['name']))
sshleme -r uptime csv -f ~/path/to/csv -c ipaddress