Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/w4/reaper
:video_game: League of Legends mass summoner name checker.
https://github.com/w4/reaper
checker league-of-legends lol reaper summoner username
Last synced: 3 months ago
JSON representation
:video_game: League of Legends mass summoner name checker.
- Host: GitHub
- URL: https://github.com/w4/reaper
- Owner: w4
- License: mit
- Created: 2015-08-24T01:58:42.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-07-09T20:40:47.000Z (over 1 year ago)
- Last Synced: 2024-10-10T04:42:05.558Z (4 months ago)
- Topics: checker, league-of-legends, lol, reaper, summoner, username
- Language: Rust
- Homepage:
- Size: 17.6 KB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# reaper
[![License](https://img.shields.io/github/license/w4/reaper.svg?style=flat-square)](https://github.com/w4/reaper) [![Downloads](https://img.shields.io/crates/d/reaper.svg?style=flat-square)](https://crates.io/crates/reaper) [![Version](https://img.shields.io/crates/v/reaper.svg?style=flat-square)](https://crates.io/crates/reaper)
[League of Legends](http://leagueoflegends.com) mass summoner name checker. Supply a region and a list
and the application will check the list for available summoner names. Common uses are finding quick
variations of your name or finding rare (or "OG") names for selling. An API Key is required to do use
this script, they are available for free from [Riot Games](https://developer.riotgames.com/).You can find a list of the servers you can query from on
[Riot's website](https://developer.riotgames.com/regional-endpoints.html). Examples of inputs for
SERVER: `euw1`, `na1`, `pbe1`.Reaper 0.1.0
Jordan Doyle
Scans over a given list for available usernames on League of LegendsUSAGE:
reaper [FLAGS] [OPTIONS]FLAGS:
-h, --help Prints help information
-V, --version Prints version information
-v, --verbose Increases logging verbosity each use up to 3 timesOPTIONS:
-o, --output Sets an output file to write available usernames toARGS:
Sets the server to search for usernames on
Sets the input file to use
Sets the API key to useFor example:
./reaper euw1 username_list.txt my-api-key -o output.txt
Will check the list `username_list.txt` for available summoner names on Europe West using API key `my-api-key` and
outputs what it finds to output.txt### Installation
You can install via cargo by running `cargo install reaper`. This will install the latest version of reaper and the
executable will be available globally on your operating system.Builds are available under [GitHub Releases](https://github.com/w4/reaper/releases) or you can build it from source
by pulling down the code and running `cargo build --release`.