A Couple of Nice and Handy Python Modules
Posted: August 2, 2008 Filed under: Deamon, Python, WiFI | Tags: Daemon, Python, WiFI 1 Commentpython-wifi 0.3.1
Python-Wifi is a Python library that provides access to information about a W-Lan card’s capabilities, like the wireless extensions written in C.
>>> from pythonwifi.iwlibs import Wireless
>>> wifi = Wireless('eth1')
>>> wifi.getEssid()
'romanofski'
>>> wifi.getMode()
'Managed'