Metadata-Version: 2.1
Name: arceus
Version: 2.1.1
Summary: Minecraft name sniper.
Home-page: UNKNOWN
Author: Aquild
License: UNKNOWN
Description: # Arceus
        
        The best (probably) free Minecraft name sniper.
        
        ## IMPORTANT - LICENSE TERMS
        
        The arceus project is licensed under GNU GPLv3 or later. This means you CANNOT redistribute modifications to the project except under GNU GLPv3. In other words, any modifications you make must also be open source.
        
        ## Features
        
        - Transfer and blocking sniper
        - Benchmark to test settings
        - Low latency by opening the TCP connections before sending requests
        - High requests/second by bypassing HTTP overhead
        
        ## Installation
        
        You can install using pip:
        
        ```sh
        pip install arceus
        ```
        
        ## Usage
        
        First, you'll need to create a `config.json`:
        
        **IMPORTANT**: If you don't know JSON syntax, please read [this tutorial](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Objects/JSON) and make sure your JSON is valid _before_ asking for help.
        
        ```jsonc
        {
          "accounts": [
            {
              "email": <ACCOUNT_EMAIL>,
              "password": <ACCOUNT_PASSWD>
            }
            ...
          ]
          "offset": <REQUEST_OFFSET>,
          "attempts": <REQUEST_ATTEMPTS>
        }
        ```
        
        CLI Options:
        
        | Name         | Short |         Description |
        | :----------- | :---: | ------------------: |
        | `--target`   | `-t`  |       Name to snipe |
        | `--config`   | `-c`  |  Config file to use |
        | `--attempts` | `-a`  |    Request attempts |
        | `--later`    | `-l`  | Days later to snipe |
        
        Transfer Snipe:
        
        ```sh
        arceus transfer
        ```
        
        Block Snipe:
        
        ```sh
        arceus block
        ```
        
        ## Benchmarking
        
        CLI Options:
        
        | Name         | Short |                  Description |
        | :----------- | :---: | ---------------------------: |
        | `--host`     | `-h`  |         Benchmark API to use |
        | `--offset`   | `-o`  |        Request timing offset |
        | `--attempts` | `-a`  |             Request attempts |
        | `--delay`    | `-d`  | Seconds before the benchmark |
        
        _Benchmarking doesn't read `config.json`, if you want to specify an offset, use the `--offset` option_
        
        ```sh
        arceus benchmark
        ```
        
        ## Contributing
        
        Feel free to fork the project and make a pull request on GitHub.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
