|
Project Information
Members
Featured
Downloads
Wiki pages
Links
|
What's pydlink?The pydlink is a python package which enables you to manage your D-Link devices. How to use pydlinkExample of how to reboot a DSL-500G device. from pydlink import dsl500g
try:
device = dsl500g.DSL500G('10.0.0.1', 23)
device.connect('admin', '******')
device.command('reboot')
except Exception, ex:
print 'Error:', str(ex)Currently supported devicesContribute |