{"id":26241686,"url":"https://github.com/booyaa/wifiscanner","last_synced_at":"2025-04-06T18:14:25.428Z","repository":{"id":45214318,"uuid":"64509970","full_name":"booyaa/wifiscanner","owner":"booyaa","description":"A crate to list WiFi hotspots in your area","archived":false,"fork":false,"pushed_at":"2023-08-06T10:37:23.000Z","size":4088,"stargazers_count":61,"open_issues_count":16,"forks_count":34,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-30T17:11:12.378Z","etag":null,"topics":["airport","crates","hacktoberfest","iw","netsh-client","wifi-hotspots","wifiscanner"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/booyaa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-07-29T20:55:29.000Z","updated_at":"2025-03-17T15:54:14.000Z","dependencies_parsed_at":"2025-03-13T08:43:24.575Z","dependency_job_id":null,"html_url":"https://github.com/booyaa/wifiscanner","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/booyaa%2Fwifiscanner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/booyaa%2Fwifiscanner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/booyaa%2Fwifiscanner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/booyaa%2Fwifiscanner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/booyaa","download_url":"https://codeload.github.com/booyaa/wifiscanner/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247526762,"owners_count":20953143,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["airport","crates","hacktoberfest","iw","netsh-client","wifi-hotspots","wifiscanner"],"created_at":"2025-03-13T08:33:19.586Z","updated_at":"2025-04-06T18:14:25.409Z","avatar_url":"https://github.com/booyaa.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# wifiscanner\n\n[![CI](https://github.com/booyaa/wifiscanner/workflows/CI/badge.svg)](https://github.com/booyaa/wifiscanner/actions?query=workflow%3ACI)\n[![Crates](https://img.shields.io/crates/v/wifiscanner.svg)](https://crates.io/crates/wifiscanner)\n[![docs.rs](https://docs.rs/wifiscanner/badge.svg)](https://docs.rs/wifiscanner)\n[![dependency status](https://deps.rs/repo/github/booyaa/wifiscanner/status.svg)](https://deps.rs/repo/github/booyaa/wifiscanner)\n\n## Important note to existing contributors!\n\nIf you have a local clone you will need to update your default branch from `master` to `main`. The easiest way to do this is to delete the clone and recreate it.\n\nAlternatively type the following commands (thanks [Scott](https://www.hanselman.com/blog/EasilyRenameYourGitDefaultBranchFromMasterToMain.aspx)):\n\n```sh\ngit checkout master\n$ git branch -m master main\n$ git fetch\n$ git branch --unset-upstream\n$ git branch -u origin/main\n$ git symbolic-ref refs/remotes/origin/HEAD refs/remotes/origin/main\n```\n\n## Intro\n\nA crate to list WiFi hotspots in your area.\n\nAs of v0.5.x now supports macOS, Linux and Windows. :tada:\n\nInspired by Maurice Svay's [node-wifiscanner](https://github.com/mauricesvay/node-wifiscanner)\n\nTests shameless pilfered from Christian Kuster's [node-wifi-scanner](https://github.com/ancasicolica/node-wifi-scanner)\n\nFull documentation can be found [here](https://docs.rs/wifiscanner).\n\n## Usage\n\nThis crate is [on crates.io](https://crates.io/crates/wifiscanner) and can be\nused by adding `wifiscanner` to the dependencies in your project's `Cargo.toml`.\n\n```toml\n[dependencies]\nwifiscanner = \"0.5.*\"\n```\n\nand this to your crate root:\n\n```rust\nextern crate wifiscanner;\n```\n\n## Example\n\n```rust\nuse wifiscanner;\nprintln!(\"{:?}\", wifiscanner::scan());\n```\n\nAlternatively if you've cloned the Git repo, you can run the above example\nusing: `cargo run --example scan`.\n\n## Changelog\n\n- 0.5.1 - crates.io metadata update\n- 0.5.0 - add window support (props to  @brianjaustin)\n- 0.4.0 - replace iwlist with iw (props to @alopatindev)\n- 0.3.6 - crates.io metadata update\n- 0.3.5 - remove hardcoded path for iwlist (props to @alopatindev)\n- 0.3.4 - initial stable release\n\n## How to contribute\n\nsee [CONTRIBUTING.md](/CONTRIBUTING.md)\n\n## Contributors\n\nwifiscanner would not be possible without the following folks:\n\n@alopatindev, @bizzu, @bash, @cristicbz, @lpmi-13, @brianjaustin\n\n## Copyright\n\nCopyright 2019 Mark Sta Ana.\n\nsee [LICENSE](/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbooyaa%2Fwifiscanner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbooyaa%2Fwifiscanner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbooyaa%2Fwifiscanner/lists"}