Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/viraptor/wigle
Python interface to wigle website
https://github.com/viraptor/wigle
Last synced: 24 days ago
JSON representation
Python interface to wigle website
- Host: GitHub
- URL: https://github.com/viraptor/wigle
- Owner: viraptor
- License: mit
- Created: 2015-03-11T04:54:37.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-06-22T02:14:11.000Z (7 months ago)
- Last Synced: 2024-12-09T04:51:28.062Z (about 1 month ago)
- Language: Python
- Size: 220 KB
- Stars: 21
- Watchers: 5
- Forks: 13
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Wigle
Python interface to wigle APIs. This project is unofficial and may stop working
due to API changes at any point without warning.Currently supported operations: authentication, search and user information
# Search
Search supports all the options available via web interface. For example to
search for APs advertising network "foobar", use:wigle = Wigle('username', 'password')
wigle.search(ssid="foobar")Paging happens behind the scenes and will pull all results in multiple requests
when necessary (when `max_results` is set to value higher than 100).See docstrings for more details.
# Command line tools
Search and user info are exposed as CLI tools `wigle_user_info` and
`wigle_search`.