bmpy


Namebmpy JSON
Version 0.0.2 PyPI version JSON
download
home_pagehttps://github.com/720922/bountymeterPY
SummaryBounty Meter is a command-line utility tool designed for bug bounty hunters to define their bounty target for a year, maintain and keep record of their bounties on a monthly basis, and track their progress throughout the year. With Bounty Meter, you can add and subtract bounties, view your total bounties earned this year, and display an interactive stats card to visualize your progress.
upload_time2023-05-01 10:41:00
maintainer
docs_urlNone
author720922
requires_python
licenseGNU Affero General Public License v3.0
keywords recon bugbounty pentesting utility hacking
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![bmbanner](https://user-images.githubusercontent.com/63975446/232277969-c4fd1424-55ac-4005-8856-18ccbe57ba90.png)

# Bounty Meter PY

Bounty Meter is a command-line utility tool designed for bug bounty hunters to define their bounty target for a year, maintain and keep record of their bounties on a monthly basis, and track their progress throughout the year. With Bounty Meter, you can add and subtract bounties, view your total bounties earned this year, and display an interactive stats card to visualize your progress.

## Getting Started

### Prerequisites

Bounty Meter PY is built using Python scripting language and requires the following tools to be installed on your system:
Bounty Meter is built using Python scripting language and requires the following tools to be installed on your system:

- Python3
- progress (pip install progress)

### Installation

You can download and use the latest version of Bounty Meter by running the following command in your terminal:
```
curl https://raw.githubusercontent.com/720922/bountymeter_py/bountymeter.py -o bm.py && chmod +x bm.py 
```

Using PyPi:
```
pip install bmpy
```

### Creating Alias
```
echo "alias bm='python3 bm.py'" >> ~/.bashrc
source ~/.bashrc
```

### Usage

[ + ] To initialize Bounty Meter and set your bounty target for the year, run the following command:
```
bm init bounty_target username
```

Replace `bounty_target` with your desired bounty target for the year and `username` with your hacking alias.

[ + ] To add a new bounty amount to a specified month, run the following command:
```
bm add month_name bounty_amount
```

Replace `month_name` with the name of the month (e.g. January, February, etc.) and `bounty_amount` with the amount of the bounty you wish to add to that particluar month.

[ + ] To remove a specified bounty amount from a specified month, run the following command:
```
bm sub month_name bounty_amount
```

Replace `month_name` with the name of the month (e.g. January, February, etc.) and `bounty_amount` with the amount of the bounty you want to remove.

[ + ] To display total bounty earned in a particular month, run the following command:
```
bm monthly month_name
```
Replace `month_name` with the name of the month (e.g. January, February, etc.) 

[ + ] To display total bounty earned the current year, run the following command:
```
bm total
```

[ + ] To display an interactive stats card that shows your progress throughout the year, run the following command:
```
bm stats
```

If you want to make the `bm stats` command your banner in the terminal, you can add the ```bm stats``` command to your `.bashrc` or `.zshrc` file.

## Screnshots
![bmusage](https://user-images.githubusercontent.com/63975446/232277645-5c7f4d74-f1a5-4afc-b91d-1001108576db.png)
![bmmonthly](https://user-images.githubusercontent.com/63975446/232277651-e35d6ed4-b555-49e0-a68c-766a15f450fa.png)
![bmstatscard](https://user-images.githubusercontent.com/63975446/232277657-7d01f347-d39a-4406-9ad2-abba053c55b5.png)

## License

Bounty Meter is licensed under the [MIT License](https://github.com/<username>/<repo>/blob/main/LICENSE).

## Contributing

If you would like to contribute to Bounty Meter, please feel free to fork the repository, make your changes, and submit a pull request. 












            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/720922/bountymeterPY",
    "name": "bmpy",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "recon,bugbounty,pentesting,utility,hacking",
    "author": "720922",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/eb/4f/5dc6bb641e1f6a1d71657e10e0daad4bc86e8140e3a4544101e8112b31b3/bmpy-0.0.2.tar.gz",
    "platform": null,
    "description": "![bmbanner](https://user-images.githubusercontent.com/63975446/232277969-c4fd1424-55ac-4005-8856-18ccbe57ba90.png)\n\n# Bounty Meter PY\n\nBounty Meter is a command-line utility tool designed for bug bounty hunters to define their bounty target for a year, maintain and keep record of their bounties on a monthly basis, and track their progress throughout the year. With Bounty Meter, you can add and subtract bounties, view your total bounties earned this year, and display an interactive stats card to visualize your progress.\n\n## Getting Started\n\n### Prerequisites\n\nBounty Meter PY is built using Python scripting language and requires the following tools to be installed on your system:\nBounty Meter is built using Python scripting language and requires the following tools to be installed on your system:\n\n- Python3\n- progress (pip install progress)\n\n### Installation\n\nYou can download and use the latest version of Bounty Meter by running the following command in your terminal:\n```\ncurl https://raw.githubusercontent.com/720922/bountymeter_py/bountymeter.py -o bm.py && chmod +x bm.py \n```\n\nUsing PyPi:\n```\npip install bmpy\n```\n\n### Creating Alias\n```\necho \"alias bm='python3 bm.py'\" >> ~/.bashrc\nsource ~/.bashrc\n```\n\n### Usage\n\n[ + ] To initialize Bounty Meter and set your bounty target for the year, run the following command:\n```\nbm init bounty_target username\n```\n\nReplace `bounty_target` with your desired bounty target for the year and `username` with your hacking alias.\n\n[ + ] To add a new bounty amount to a specified month, run the following command:\n```\nbm add month_name bounty_amount\n```\n\nReplace `month_name` with the name of the month (e.g. January, February, etc.) and `bounty_amount` with the amount of the bounty you wish to add to that particluar month.\n\n[ + ] To remove a specified bounty amount from a specified month, run the following command:\n```\nbm sub month_name bounty_amount\n```\n\nReplace `month_name` with the name of the month (e.g. January, February, etc.) and `bounty_amount` with the amount of the bounty you want to remove.\n\n[ + ] To display total bounty earned in a particular month, run the following command:\n```\nbm monthly month_name\n```\nReplace `month_name` with the name of the month (e.g. January, February, etc.) \n\n[ + ] To display total bounty earned the current year, run the following command:\n```\nbm total\n```\n\n[ + ] To display an interactive stats card that shows your progress throughout the year, run the following command:\n```\nbm stats\n```\n\nIf you want to make the `bm stats` command your banner in the terminal, you can add the ```bm stats``` command to your `.bashrc` or `.zshrc` file.\n\n## Screnshots\n![bmusage](https://user-images.githubusercontent.com/63975446/232277645-5c7f4d74-f1a5-4afc-b91d-1001108576db.png)\n![bmmonthly](https://user-images.githubusercontent.com/63975446/232277651-e35d6ed4-b555-49e0-a68c-766a15f450fa.png)\n![bmstatscard](https://user-images.githubusercontent.com/63975446/232277657-7d01f347-d39a-4406-9ad2-abba053c55b5.png)\n\n## License\n\nBounty Meter is licensed under the [MIT License](https://github.com/<username>/<repo>/blob/main/LICENSE).\n\n## Contributing\n\nIf you would like to contribute to Bounty Meter, please feel free to fork the repository, make your changes, and submit a pull request. \n\n\n\n\n\n\n\n\n\n\n\n",
    "bugtrack_url": null,
    "license": "GNU Affero General Public License v3.0",
    "summary": "Bounty Meter is a command-line utility tool designed for bug bounty hunters to define their bounty target for a year, maintain and keep record of their bounties on a monthly basis, and track their progress throughout the year. With Bounty Meter, you can add and subtract bounties, view your total bounties earned this year, and display an interactive stats card to visualize your progress.",
    "version": "0.0.2",
    "project_urls": {
        "Download": "https://github.com/720922/bountymeterPY/archive/v0.0.2.zip",
        "Homepage": "https://github.com/720922/bountymeterPY"
    },
    "split_keywords": [
        "recon",
        "bugbounty",
        "pentesting",
        "utility",
        "hacking"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ccaf965fe19ce39a5e132e539ba2502f91ff6da6dbbde49ec3c95dd8d332868a",
                "md5": "6d9a6ddafc1e00475d80cbaadeec4066",
                "sha256": "e6e112d8b1d5bf4b4c6b7336882cb3f66b3c7b71f24520264d1a4544bcb4d4da"
            },
            "downloads": -1,
            "filename": "bmpy-0.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6d9a6ddafc1e00475d80cbaadeec4066",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 4920,
            "upload_time": "2023-05-01T10:40:58",
            "upload_time_iso_8601": "2023-05-01T10:40:58.201201Z",
            "url": "https://files.pythonhosted.org/packages/cc/af/965fe19ce39a5e132e539ba2502f91ff6da6dbbde49ec3c95dd8d332868a/bmpy-0.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb4f5dc6bb641e1f6a1d71657e10e0daad4bc86e8140e3a4544101e8112b31b3",
                "md5": "4027afd4ebb686398e55e204e7788210",
                "sha256": "a426c30e4e505d34921c193f4b9d09a2f5fdb363fcd8c8b9f9e19c560e18aefc"
            },
            "downloads": -1,
            "filename": "bmpy-0.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "4027afd4ebb686398e55e204e7788210",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 4739,
            "upload_time": "2023-05-01T10:41:00",
            "upload_time_iso_8601": "2023-05-01T10:41:00.446716Z",
            "url": "https://files.pythonhosted.org/packages/eb/4f/5dc6bb641e1f6a1d71657e10e0daad4bc86e8140e3a4544101e8112b31b3/bmpy-0.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-01 10:41:00",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "720922",
    "github_project": "bountymeterPY",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "bmpy"
}
        
Elapsed time: 0.05896s