{"id":25840120,"url":"https://github.com/wisespace-io/fenrir","last_synced_at":"2025-10-12T20:18:03.572Z","repository":{"id":57628377,"uuid":"278645488","full_name":"wisespace-io/fenrir","owner":"wisespace-io","description":"Get geolocation of wifi devices using services such as wigle.net","archived":false,"fork":false,"pushed_at":"2020-07-14T17:58:06.000Z","size":17,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-02-28T07:57:10.356Z","etag":null,"topics":["ble","bluetooth","geolocation","wifi","wigle"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wisespace-io.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-07-10T13:49:56.000Z","updated_at":"2021-07-24T18:40:33.000Z","dependencies_parsed_at":"2022-09-26T20:12:04.262Z","dependency_job_id":null,"html_url":"https://github.com/wisespace-io/fenrir","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/wisespace-io%2Ffenrir","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wisespace-io%2Ffenrir/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wisespace-io%2Ffenrir/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wisespace-io%2Ffenrir/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wisespace-io","download_url":"https://codeload.github.com/wisespace-io/fenrir/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241317596,"owners_count":19943201,"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":["ble","bluetooth","geolocation","wifi","wigle"],"created_at":"2025-03-01T04:40:39.633Z","updated_at":"2025-10-12T20:18:03.489Z","avatar_url":"https://github.com/wisespace-io.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fenrir\n\nLocates wifi devices using services such as wigle.net\n\n[![Crates.io](https://img.shields.io/crates/v/fenrir.svg)](https://crates.io/crates/fenrir)\n[![Build Status](https://travis-ci.org/wisespace-io/fenrir.png?branch=master)](https://travis-ci.org/wisespace-io/fenrir)\n[![MIT licensed](https://img.shields.io/badge/License-MIT-blue.svg)](./LICENSE-MIT)\n[![Apache-2.0 licensed](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](./LICENSE-APACHE)\n\n[Documentation](https://docs.rs/crate/fenrir/)\n\n## Wigle.net api\n\nAfter creating an account on wigle.net, visit https://wigle.net/account to get your API Token.\nIt correspondes to the \"Encoded for use\" field.\n\n```rust\nuse async_std::task;\nuse fenrir::api::*;\nuse fenrir::wigle::api::*;\n\nfn main() -\u003e Result\u003c(), surf::Exception\u003e {\n    let token = std::env::var(\"WIGLE_TOKEN\").expect(\"Provide your WIGLE_TOKEN as an environment variable\");\n    task::block_on(async {\n        let wigle: Wigle = Fenrir::new(Some(token));\n        let geo_response = wigle.geocode(\"1600 Amphitheatre Parkway\").await?;\n        dbg!(geo_response);\n\n        let search_response = wigle.search_bssid(\"00:00:00:00:00:00\").await?;\n        dbg!(search_response);\n\n        Ok(())\n    })\n}\n```\n\n## Mylnikov api\n\nIt does not require an API token, it is completely free.\n\n```rust\nuse async_std::task;\nuse fenrir::api::*;\nuse fenrir::mylnikov::api::*;\n\nfn main() -\u003e Result\u003c(), surf::Exception\u003e {\n    task::block_on(async {\n        let mylnikov: Mylnikov = Fenrir::new(None);\n        let search_response = mylnikov.search_bssid(\"00:00:00:00:00:00\").await?;\n        dbg!(search_response);\n\n        Ok(())\n    })\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwisespace-io%2Ffenrir","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwisespace-io%2Ffenrir","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwisespace-io%2Ffenrir/lists"}